body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #22a5e5 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22a5e5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #22a5e5 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #116690 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #22a5e5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #22a5e5;
  border-color: #22a5e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #22a5e5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #22a5e5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #22a5e5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #22a5e5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #22a5e5;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #22a5e5;
  border-bottom-color: #22a5e5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #22a5e5 !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: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2322a5e5' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPfy14Q71N {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/pexels-ekaterina-bolovtsova-6077326.jpg");
}
.cid-tsgtwZG7Ys {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-sora-shimazaki-5669656.jpg");
}
.cid-tsgtwZG7Ys .mbr-section-title {
  color: #ffffff;
}
.cid-tsgtwZG7Ys .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSTwZhm1HJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitdescentralzacion.jpg");
}
.cid-uSTwZhm1HJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTwZhm1HJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTwZhm1HJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSTwZhm1HJ .mbr-section-title {
  color: #ffffff;
}
.cid-t7VPUmnQBc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/andrew-neel-cckf4tshauw-unsplash-1466x977.jpg");
}
.cid-t7VPUmnQBc .row {
  flex-direction: row-reverse;
}
.cid-t7VPUmnQBc .video-wrapper iframe {
  width: 100%;
}
.cid-t7VPUmnQBc .mbr-section-title,
.cid-t7VPUmnQBc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7VPUmnQBc .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7VPUmnQBc .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-t7VPUmnQBc .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uE8UI9cljY {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/art1.png");
}
.cid-uE8UI9cljY .mbr-section-title {
  color: #ffffff;
}
.cid-uE8UI9cljY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uE8ULdNQpl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoin5.jpg");
}
.cid-uE8ULdNQpl .mbr-section-title {
  color: #ffffff;
}
.cid-uE8ULdNQpl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uE8UO0yazx {
  background-image: url("../../../assets/images/bitico.jpg");
}
.cid-uE8UO0yazx .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uE8UO0yazx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uE8UO0yazx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uE8UO0yazx .card-wrapper {
    padding: 4rem;
  }
}
.cid-uE8UO0yazx .mbr-text,
.cid-uE8UO0yazx .mbr-section-btn {
  color: #ffffff;
}
.cid-uE8UO0yazx .card-title,
.cid-uE8UO0yazx .card-box {
  text-align: left;
}
.cid-uE8US55ily {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/arbi-275x183.jpg");
}
.cid-uE8US55ily .mbr-section-title {
  color: #ffffff;
}
.cid-uE8US55ily .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sS1MKLkLXw {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9q7V6x8oa {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/andrew-neel-cckf4tshauw-unsplash-1466x977.jpg");
}
.cid-t9q7V6x8oa .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-t9q7V6x8oa form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t9q7V6x8oa form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t9q7V6x8oa form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9q7V6x8oa .mbr-section-title {
  color: #ffffff;
}
.cid-uutn9XLkxl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/sociedad-espanola.jpg");
}
.cid-uutn9XLkxl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutn9XLkxl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutn9XLkxl .mbr-section-title {
  color: #ffffff;
}
.cid-uutn9XLkxl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttF9HyGJdD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-47047.jpg");
}
.cid-ttF9HyGJdD .mbr-section-title {
  color: #ffffff;
}
.cid-ttF9HyGJdD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttFcQJUNoD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/326nwq6qqhxk25by53bq3rz6ze.jpg");
}
.cid-ttFcQJUNoD .mbr-section-title {
  color: #ffffff;
}
.cid-ttFcQJUNoD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tud6iIDkAg {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1643395185-090721-1643395381-noticia-normal.jpg");
}
.cid-tud6iIDkAg .mbr-section-title {
  color: #ffffff;
}
.cid-tud6iIDkAg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tunoSJ0Q2s {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/william-iven-spvhcbuki6e-unsplash-2000x1328.jpg");
}
.cid-tunoSJ0Q2s .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tunoSJ0Q2s .mbr-section-title {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tusD7yKKLs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/editorial1.jpg");
}
.cid-tusD7yKKLs .mbr-section-title {
  color: #ffffff;
}
.cid-tusD7yKKLs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuNzRC5YpN {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/pexels-andrea-piacquadio-3753009.jpg");
}
.cid-tuNzRC5YpN .mbr-section-title {
  color: #ffffff;
}
.cid-tuNzRC5YpN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txmzivnaK1 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banqueros.jpg");
}
.cid-txmzivnaK1 .mbr-section-title {
  color: #ffffff;
}
.cid-txmzivnaK1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrACgYYa7 {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/pexels-cottonbro-studio-2773507.jpg");
}
.cid-v1NRzzNJjX {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v1NRzzNJjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1NRzzNJjX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1NRzzNJjX .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v1NRzzNJjX .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v1NRzzNJjX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v1NRzzNJjX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v1NRzzNJjX .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v1NRzzNJjX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v1NRzzNJjX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v1NRzzNJjX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v1NRzzNJjX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v1NRzzNJjX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v1mDKEq7XU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v1mDKEq7XU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1mDKEq7XU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1mDKEq7XU .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v1mDKEq7XU .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v1mDKEq7XU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v1mDKEq7XU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v1mDKEq7XU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v1mDKEq7XU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v1mDKEq7XU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v1mDKEq7XU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v1mDKEq7XU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v1mDKEq7XU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0CRpKbzm0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0CRpKbzm0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0CRpKbzm0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0CRpKbzm0 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0CRpKbzm0 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v0CRpKbzm0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0CRpKbzm0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0CRpKbzm0 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0CRpKbzm0 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0CRpKbzm0 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0CRpKbzm0 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0CRpKbzm0 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0CRpKbzm0 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v04rRif5k7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v04rRif5k7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v04rRif5k7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v04rRif5k7 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v04rRif5k7 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v04rRif5k7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v04rRif5k7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v04rRif5k7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v04rRif5k7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v04rRif5k7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v04rRif5k7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v04rRif5k7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v04rRif5k7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uUjwFNZtMS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uUjwFNZtMS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUjwFNZtMS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUjwFNZtMS .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uUjwFNZtMS .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uUjwFNZtMS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uUjwFNZtMS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uUjwFNZtMS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uUjwFNZtMS .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uUjwFNZtMS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uUjwFNZtMS .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uUjwFNZtMS .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uUjwFNZtMS .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uTySTtUhcZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uTySTtUhcZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTySTtUhcZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTySTtUhcZ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uTySTtUhcZ .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uTySTtUhcZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uTySTtUhcZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uTySTtUhcZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uTySTtUhcZ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uTySTtUhcZ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uTySTtUhcZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uTySTtUhcZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTySTtUhcZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uSJhxlcPrg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uSJhxlcPrg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJhxlcPrg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSJhxlcPrg .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uSJhxlcPrg .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uSJhxlcPrg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uSJhxlcPrg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uSJhxlcPrg .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uSJhxlcPrg .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uSJhxlcPrg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSJhxlcPrg .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uSJhxlcPrg .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSJhxlcPrg .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uS2UlIoUSd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uS2UlIoUSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2UlIoUSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2UlIoUSd .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uS2UlIoUSd .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uS2UlIoUSd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uS2UlIoUSd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uS2UlIoUSd .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uS2UlIoUSd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uS2UlIoUSd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uS2UlIoUSd .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uS2UlIoUSd .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uS2UlIoUSd .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uRzKclF3Mk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uRzKclF3Mk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRzKclF3Mk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRzKclF3Mk .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uRzKclF3Mk .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uRzKclF3Mk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uRzKclF3Mk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uRzKclF3Mk .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uRzKclF3Mk .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uRzKclF3Mk .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uRzKclF3Mk .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uRzKclF3Mk .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRzKclF3Mk .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uQPlOY00dv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uQPlOY00dv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQPlOY00dv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQPlOY00dv .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uQPlOY00dv .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uQPlOY00dv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQPlOY00dv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uQPlOY00dv .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uQPlOY00dv .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uQPlOY00dv .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uQPlOY00dv .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uQPlOY00dv .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQPlOY00dv .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uQyojV6hWI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uQyojV6hWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyojV6hWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyojV6hWI .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uQyojV6hWI .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uQyojV6hWI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQyojV6hWI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uQyojV6hWI .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uQyojV6hWI .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uQyojV6hWI .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uQyojV6hWI .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uQyojV6hWI .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQyojV6hWI .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uQeRLQcrY3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uQeRLQcrY3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQeRLQcrY3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQeRLQcrY3 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uQeRLQcrY3 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uQeRLQcrY3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQeRLQcrY3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uQeRLQcrY3 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uQeRLQcrY3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uQeRLQcrY3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uQeRLQcrY3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uQeRLQcrY3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQeRLQcrY3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uPuGCwgINi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uPuGCwgINi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPuGCwgINi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPuGCwgINi .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uPuGCwgINi .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uPuGCwgINi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uPuGCwgINi .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uPuGCwgINi .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uPuGCwgINi .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uPuGCwgINi .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPuGCwgINi .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uPuGCwgINi .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPuGCwgINi .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uPgmeSb6Ti {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uPgmeSb6Ti .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgmeSb6Ti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPgmeSb6Ti .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uPgmeSb6Ti .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uPgmeSb6Ti .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uPgmeSb6Ti .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uPgmeSb6Ti .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uPgmeSb6Ti .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uPgmeSb6Ti .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPgmeSb6Ti .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uPgmeSb6Ti .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPgmeSb6Ti .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uP25m75nSv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uP25m75nSv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP25m75nSv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP25m75nSv .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uP25m75nSv .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uP25m75nSv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uP25m75nSv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uP25m75nSv .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uP25m75nSv .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uP25m75nSv .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uP25m75nSv .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uP25m75nSv .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uP25m75nSv .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uOXUF3tGa7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uOXUF3tGa7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOXUF3tGa7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOXUF3tGa7 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uOXUF3tGa7 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uOXUF3tGa7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOXUF3tGa7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uOXUF3tGa7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uOXUF3tGa7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uOXUF3tGa7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOXUF3tGa7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uOXUF3tGa7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOXUF3tGa7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uOimdreUWK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uOimdreUWK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOimdreUWK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOimdreUWK .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uOimdreUWK .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uOimdreUWK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOimdreUWK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uOimdreUWK .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uOimdreUWK .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uOimdreUWK .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOimdreUWK .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uOimdreUWK .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOimdreUWK .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uNCYHjL1p8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uNCYHjL1p8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNCYHjL1p8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNCYHjL1p8 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uNCYHjL1p8 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uNCYHjL1p8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNCYHjL1p8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uNCYHjL1p8 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uNCYHjL1p8 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uNCYHjL1p8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uNCYHjL1p8 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uNCYHjL1p8 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uNCYHjL1p8 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uKeAo9bezp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uKeAo9bezp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKeAo9bezp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKeAo9bezp .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uKeAo9bezp .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uKeAo9bezp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKeAo9bezp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uKeAo9bezp .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uKeAo9bezp .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uKeAo9bezp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKeAo9bezp .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uKeAo9bezp .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKeAo9bezp .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGi9rn8yGt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uGi9rn8yGt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGi9rn8yGt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGi9rn8yGt .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGi9rn8yGt .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGi9rn8yGt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGi9rn8yGt .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGi9rn8yGt .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGi9rn8yGt .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGi9rn8yGt .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGi9rn8yGt .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGi9rn8yGt .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGi9rn8yGt .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uEhgyMdZ8U {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uEhgyMdZ8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEhgyMdZ8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEhgyMdZ8U .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uEhgyMdZ8U .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uEhgyMdZ8U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uEhgyMdZ8U .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEhgyMdZ8U .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uEhgyMdZ8U .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEhgyMdZ8U .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uEhgyMdZ8U .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uEhgyMdZ8U .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEhgyMdZ8U .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uE78zNOimG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uE78zNOimG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE78zNOimG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uE78zNOimG .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uE78zNOimG .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uE78zNOimG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uE78zNOimG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uE78zNOimG .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uE78zNOimG .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uE78zNOimG .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uE78zNOimG .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uE78zNOimG .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uE78zNOimG .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uzPY7q7oLW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uzPY7q7oLW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzPY7q7oLW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzPY7q7oLW .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uzPY7q7oLW .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uzPY7q7oLW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uzPY7q7oLW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzPY7q7oLW .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uzPY7q7oLW .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzPY7q7oLW .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uzPY7q7oLW .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uzPY7q7oLW .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uzPY7q7oLW .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uzpDSM8TYR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uzpDSM8TYR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzpDSM8TYR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzpDSM8TYR .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uzpDSM8TYR .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uzpDSM8TYR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uzpDSM8TYR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzpDSM8TYR .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uzpDSM8TYR .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzpDSM8TYR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uzpDSM8TYR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uzpDSM8TYR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uzpDSM8TYR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uzdvXrOgYS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uzdvXrOgYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdvXrOgYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdvXrOgYS .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uzdvXrOgYS .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uzdvXrOgYS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uzdvXrOgYS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzdvXrOgYS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uzdvXrOgYS .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzdvXrOgYS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uzdvXrOgYS .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uzdvXrOgYS .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uzdvXrOgYS .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uz5mKxSBQx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uz5mKxSBQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uz5mKxSBQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uz5mKxSBQx .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uz5mKxSBQx .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uz5mKxSBQx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uz5mKxSBQx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz5mKxSBQx .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uz5mKxSBQx .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz5mKxSBQx .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uz5mKxSBQx .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uz5mKxSBQx .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uz5mKxSBQx .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uyO4RQ9LLL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uyO4RQ9LLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyO4RQ9LLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyO4RQ9LLL .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uyO4RQ9LLL .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uyO4RQ9LLL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyO4RQ9LLL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyO4RQ9LLL .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uyO4RQ9LLL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyO4RQ9LLL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uyO4RQ9LLL .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uyO4RQ9LLL .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uyO4RQ9LLL .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uxuNgJycgr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uxuNgJycgr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxuNgJycgr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxuNgJycgr .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uxuNgJycgr .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uxuNgJycgr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxuNgJycgr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uxuNgJycgr .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uxuNgJycgr .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uxuNgJycgr .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uxuNgJycgr .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uxuNgJycgr .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxuNgJycgr .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ux3Sqbmaey {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ux3Sqbmaey .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux3Sqbmaey .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux3Sqbmaey .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ux3Sqbmaey .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-ux3Sqbmaey .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ux3Sqbmaey .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ux3Sqbmaey .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-ux3Sqbmaey .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ux3Sqbmaey .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ux3Sqbmaey .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ux3Sqbmaey .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ux3Sqbmaey .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwLaS1MEeL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uwLaS1MEeL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLaS1MEeL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLaS1MEeL .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwLaS1MEeL .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uwLaS1MEeL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwLaS1MEeL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwLaS1MEeL .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwLaS1MEeL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwLaS1MEeL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwLaS1MEeL .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwLaS1MEeL .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwLaS1MEeL .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwx2yOWzYE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uwx2yOWzYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwx2yOWzYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwx2yOWzYE .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwx2yOWzYE .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uwx2yOWzYE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwx2yOWzYE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwx2yOWzYE .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwx2yOWzYE .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwx2yOWzYE .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwx2yOWzYE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwx2yOWzYE .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwx2yOWzYE .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uw4vXzlfrk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uw4vXzlfrk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw4vXzlfrk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw4vXzlfrk .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uw4vXzlfrk .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uw4vXzlfrk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uw4vXzlfrk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uw4vXzlfrk .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uw4vXzlfrk .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uw4vXzlfrk .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uw4vXzlfrk .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uw4vXzlfrk .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw4vXzlfrk .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvdPVvMw4Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uvdPVvMw4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvdPVvMw4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvdPVvMw4Q .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvdPVvMw4Q .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvdPVvMw4Q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvdPVvMw4Q .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvdPVvMw4Q .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvdPVvMw4Q .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvdPVvMw4Q .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvdPVvMw4Q .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvdPVvMw4Q .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvdPVvMw4Q .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uv1YUArPue {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uv1YUArPue .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv1YUArPue .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv1YUArPue .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uv1YUArPue .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uv1YUArPue .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uv1YUArPue .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uv1YUArPue .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uv1YUArPue .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uv1YUArPue .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uv1YUArPue .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uv1YUArPue .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uv1YUArPue .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuzzrFpfCV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uuzzrFpfCV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuzzrFpfCV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuzzrFpfCV .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuzzrFpfCV .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuzzrFpfCV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuzzrFpfCV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuzzrFpfCV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuzzrFpfCV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuzzrFpfCV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuzzrFpfCV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuzzrFpfCV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuzzrFpfCV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uunmycGKMd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uunmycGKMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uunmycGKMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uunmycGKMd .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uunmycGKMd .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uunmycGKMd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uunmycGKMd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uunmycGKMd .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uunmycGKMd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uunmycGKMd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uunmycGKMd .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uunmycGKMd .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uunmycGKMd .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuhUTDeM61 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uuhUTDeM61 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuhUTDeM61 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuhUTDeM61 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuhUTDeM61 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuhUTDeM61 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuhUTDeM61 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuhUTDeM61 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuhUTDeM61 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuhUTDeM61 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuhUTDeM61 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuhUTDeM61 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuhUTDeM61 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uu5gxoPQr7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uu5gxoPQr7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu5gxoPQr7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu5gxoPQr7 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uu5gxoPQr7 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uu5gxoPQr7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uu5gxoPQr7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uu5gxoPQr7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uu5gxoPQr7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uu5gxoPQr7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uu5gxoPQr7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uu5gxoPQr7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uu5gxoPQr7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ut0NEZPjNx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ut0NEZPjNx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut0NEZPjNx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut0NEZPjNx .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ut0NEZPjNx .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-ut0NEZPjNx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ut0NEZPjNx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ut0NEZPjNx .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-ut0NEZPjNx .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ut0NEZPjNx .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ut0NEZPjNx .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ut0NEZPjNx .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ut0NEZPjNx .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tJH8dlDA0j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tJH8dlDA0j .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tJH8dlDA0j .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tJH8dlDA0j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tJH8dlDA0j .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tJH8dlDA0j .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tJH8dlDA0j .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tJH8dlDA0j .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tJH8dlDA0j .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tJH8dlDA0j .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJH8dlDA0j .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tJrdVx9pQz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tJrdVx9pQz .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tJrdVx9pQz .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tJrdVx9pQz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tJrdVx9pQz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tJrdVx9pQz .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tJrdVx9pQz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tJrdVx9pQz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tJrdVx9pQz .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tJrdVx9pQz .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJrdVx9pQz .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tJ7X8nIsiG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tJ7X8nIsiG .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tJ7X8nIsiG .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tJ7X8nIsiG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tJ7X8nIsiG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tJ7X8nIsiG .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tJ7X8nIsiG .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tJ7X8nIsiG .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tJ7X8nIsiG .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tJ7X8nIsiG .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJ7X8nIsiG .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tIY4RSKc8M {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tIY4RSKc8M .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tIY4RSKc8M .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tIY4RSKc8M .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tIY4RSKc8M .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tIY4RSKc8M .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tIY4RSKc8M .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tIY4RSKc8M .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tIY4RSKc8M .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tIY4RSKc8M .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIY4RSKc8M .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tHwK2Oq8m0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tHwK2Oq8m0 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tHwK2Oq8m0 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tHwK2Oq8m0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tHwK2Oq8m0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tHwK2Oq8m0 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tHwK2Oq8m0 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tHwK2Oq8m0 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHwK2Oq8m0 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tHwK2Oq8m0 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tHwK2Oq8m0 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tFD8D0FHcO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tFD8D0FHcO .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tFD8D0FHcO .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tFD8D0FHcO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFD8D0FHcO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tFD8D0FHcO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tFD8D0FHcO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tFD8D0FHcO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tFD8D0FHcO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tFD8D0FHcO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFD8D0FHcO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tESADoc0oD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tESADoc0oD .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tESADoc0oD .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tESADoc0oD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tESADoc0oD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tESADoc0oD .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tESADoc0oD .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tESADoc0oD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tESADoc0oD .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tESADoc0oD .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tESADoc0oD .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tE9o0zW0vc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tE9o0zW0vc .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tE9o0zW0vc .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tE9o0zW0vc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tE9o0zW0vc .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tE9o0zW0vc .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tE9o0zW0vc .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tE9o0zW0vc .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE9o0zW0vc .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tE9o0zW0vc .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tE9o0zW0vc .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDS1A1kJhm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tDS1A1kJhm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDS1A1kJhm .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDS1A1kJhm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDS1A1kJhm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDS1A1kJhm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDS1A1kJhm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDS1A1kJhm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDS1A1kJhm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDS1A1kJhm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDS1A1kJhm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCOgkzKT6K {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tCOgkzKT6K .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCOgkzKT6K .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tCOgkzKT6K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCOgkzKT6K .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tCOgkzKT6K .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tCOgkzKT6K .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tCOgkzKT6K .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCOgkzKT6K .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCOgkzKT6K .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCOgkzKT6K .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tBkrypT0Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tBkrypT0Yt .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tBkrypT0Yt .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tBkrypT0Yt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBkrypT0Yt .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tBkrypT0Yt .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tBkrypT0Yt .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tBkrypT0Yt .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tBkrypT0Yt .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tBkrypT0Yt .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tBkrypT0Yt .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tyQB4Gxwxf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tyQB4Gxwxf .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tyQB4Gxwxf .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tyQB4Gxwxf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tyQB4Gxwxf .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tyQB4Gxwxf .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tyQB4Gxwxf .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tyQB4Gxwxf .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyQB4Gxwxf .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tyQB4Gxwxf .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tyQB4Gxwxf .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-txOjExI4GA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-txOjExI4GA .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-txOjExI4GA .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-txOjExI4GA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txOjExI4GA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-txOjExI4GA .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-txOjExI4GA .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-txOjExI4GA .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txOjExI4GA .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-txOjExI4GA .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-txOjExI4GA .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-txALzgqMbY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-txALzgqMbY .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-txALzgqMbY .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-txALzgqMbY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txALzgqMbY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-txALzgqMbY .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-txALzgqMbY .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-txALzgqMbY .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txALzgqMbY .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-txALzgqMbY .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-txALzgqMbY .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-txrB9kSVG7 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-txrB9kSVG7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-txrB9kSVG7 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-txrB9kSVG7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrB9kSVG7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-txrB9kSVG7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-txrB9kSVG7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-txrB9kSVG7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrB9kSVG7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-txrB9kSVG7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-txrB9kSVG7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrCqXD1lI {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-cottonbro-studio-4069292.jpg");
}
.cid-txrCqXD1lI .mbr-section-title {
  color: #000000;
}
.cid-txrCqXD1lI .mbr-section-subtitle {
  color: #000000;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txAMxe9iwA {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/arton21395-95f62.jpg");
}
.cid-txAMxe9iwA .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txOl7JWowp {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-cottonbro-studio-4069292.jpg");
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txP3SGdo1U {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/2silvercoin-1120x739.jpg");
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyQCC1xq2Z {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-cottonbro-studio-4069292.jpg");
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBksYoMM0P {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-tranmautritam-251225-2000x1188.jpg");
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBFIWB4DZQ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/william-iven-spvhcbuki6e-unsplash-2000x1328.jpg");
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCHvqoWhs1 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/03-1-456x304.jpg");
}
.cid-tHwOrL5NDj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tHwOrL5NDj .mbr-text,
.cid-tHwOrL5NDj .mbr-section-btn {
  color: #232323;
}
.cid-tHwOrL5NDj .card-title,
.cid-tHwOrL5NDj .card-box {
  color: #ffffff;
}
.cid-tHwOrL5NDj .mbr-text,
.cid-tHwOrL5NDj .link-wrap {
  color: #ffffff;
}
.cid-tHwOrL5NDj .card-box .mbr-text,
.cid-tHwOrL5NDj .mbr-section-btn {
  text-align: left;
}
.cid-tCHzA7xg4F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/adeolu-eletu-unrkg2jh1j0-unsplash-1-1466x971.jpg");
}
.cid-tCHzA7xg4F .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tCHzA7xg4F .mbr-section-title {
  color: #ffffff;
}
.cid-tCHBWBFyzP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tCHBWBFyzP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCHBWBFyzP .row {
  flex-direction: row-reverse;
}
.cid-tCHBWBFyzP img {
  width: 100%;
}
.cid-tCHBigCf8f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ninabet-300x168.jpg");
}
.cid-tCHBigCf8f .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tCHBigCf8f .mbr-section-title {
  color: #ffffff;
}
.cid-v2vXagFN8w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/andrew-neel-cckf4tshauw-unsplash-1-1466x977.jpg");
}
.cid-v2vXagFN8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2vXagFN8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2vXagFN8w ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v2vXagFN8w li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v2vXagFN8w ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v2vXagFN8w H3 {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCOhKGBXZR {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/trafico-300x168.png");
}
.cid-tCOhKGBXZR .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCTfvbldE3 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-cottonbro-studio-3943746.jpg");
}
.cid-tCTfvbldE3 .mbr-section-subtitle {
  text-align: left;
}
.cid-tCTm0wIpRa {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-534216.jpg");
}
.cid-tCTm0wIpRa .row {
  flex-direction: row-reverse;
}
.cid-tCTm0wIpRa .video-wrapper iframe {
  width: 100%;
}
.cid-tCTm0wIpRa .mbr-section-title,
.cid-tCTm0wIpRa .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tCTm0wIpRa .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDA3rE6oWN {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-dom-j-45111.jpg");
}
.cid-tDA3rE6oWN .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRIzRnCcP {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-cottonbro-studio-3943746.jpg");
}
.cid-tDRIzRnCcP .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDS3dGq6nu {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-tirachard-kumtanom-733856.jpg");
}
.cid-tDS3dGq6nu .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDX9eNqWIk {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/pexels-alena-darmel-7641860.jpg");
}
.cid-tDXbeSGTzr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-280229.jpg");
}
.cid-tDXbeSGTzr .mbr-section-subtitle {
  text-align: left;
}
.cid-uBFoFlmEjq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/03-2-456x304.jpg");
}
.cid-uBFoFlmEjq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFoFlmEjq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBFoFlmEjq .video-wrapper iframe {
  width: 100%;
}
.cid-uBFoFlmEjq .mbr-section-title,
.cid-uBFoFlmEjq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uBFoFlmEjq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uBFoFlmEjq .mbr-section-title {
  color: #ffffff;
}
.cid-uBFoFlmEjq .mbr-text {
  color: #ffffff;
}
.cid-tDXdrmjZZg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-alena-darmel-7641837.jpg");
}
.cid-tDXdrmjZZg .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tDXdrmjZZg .mbr-section-subtitle {
  text-align: center;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE4DGXzljo {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-ono-kosuki-5999933.jpg");
}
.cid-tE4DGXzljo .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE8cgYNB54 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-259201.jpg");
}
.cid-tE8cgYNB54 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE9p9XsJiG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-210574.jpg");
}
.cid-tE9p9XsJiG .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEmm5U5LE3 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-alena-darmel-7641860.jpg");
}
.cid-tEmm5U5LE3 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tESC6iz2Ls {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2-1836x1225.jpg");
}
.cid-tESC6iz2Ls .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFzygeeZBl {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2-1836x1225.jpg");
}
.cid-tFzygeeZBl .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFD9rIe1kF {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-dids-3635539.jpg");
}
.cid-tFD9rIe1kF .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG1FujmSus {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-kampus-production-8353790.jpg");
}
.cid-tG1FujmSus .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGor1Qc8GV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-tima-miroshnichenko-7567484.jpg");
}
.cid-tGor1Qc8GV .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHwLbSoK1c {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-kampus-production-8353790.jpg");
}
.cid-tHwLbSoK1c .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tI2aHxJH3s {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dinero-3-275x183.jpg");
}
.cid-tI2aHxJH3s .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIbvGn8ifN {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bce2.jpg");
}
.cid-tIbvGn8ifN .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tInLG5nmEB {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/descarga-3.jpg");
}
.cid-tInLG5nmEB .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIQ9PkFXcG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-rdne-stock-project-7821716.jpg");
}
.cid-tIQ9PkFXcG .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIY5QWmZH6 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-anna-tarazevich-14751274.jpg");
}
.cid-tIY5QWmZH6 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJ7YosLWXp {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-worldspectrum-844125.jpg");
}
.cid-tJ7YosLWXp .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJreNJ5WYk {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-olia-danilevich-5466785.jpg");
}
.cid-tJreNJ5WYk .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJH9jRVA9g {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-crypto-crow-1447418.jpg");
}
.cid-tJH9jRVA9g .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tK6eocIvoI {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-alex-green-5699424.jpg");
}
.cid-tK6eocIvoI .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKnlwFl52h {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-anna-tarazevich-14751274.jpg");
}
.cid-tKnlwFl52h .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLcYfXZKKP {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-259249.jpg");
}
.cid-tLcYfXZKKP .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWTzDrOzpA {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/copia2.jpg");
}
.cid-tWTzDrOzpA .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYTw3XHvl {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hipotecas2.jpg");
}
.cid-tWYTw3XHvl .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tY1YpwHFjh {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hipoteca3.jpg");
}
.cid-tY1YpwHFjh .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tY9r1zGoHJ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tY9r1zGoHJ .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYgFvIaPKm {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background4-1836x1234.jpg");
}
.cid-tYgFvIaPKm .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYjLJ69WvY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/usura.jpg");
}
.cid-tYjLJ69WvY .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYpFlgHr55 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/catalogo-1-275x183.jpg");
}
.cid-tYpFlgHr55 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZsvj8hSJG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/03-2-456x304.jpg");
}
.cid-tZsvj8hSJG .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ud65Kxd93i {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/revolvingusura.jpg");
}
.cid-ud65Kxd93i .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud65Kxd93i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud65Kxd93i .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ut08kiskqt {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fmi.jpg");
}
.cid-ut08kiskqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut08kiskqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut08kiskqt .mbr-section-title {
  color: #000000;
}
.cid-ut08kiskqt .mbr-section-subtitle {
  color: #000000;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ut0PL6YiQx {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoinreserva.jpg");
}
.cid-ut0PL6YiQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut0PL6YiQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut0PL6YiQx .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uteyO9NSxa {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/blockchaincontami.jpg");
}
.cid-uteyO9NSxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uteyO9NSxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uteyO9NSxa .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utqlWtudjL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dana.jpg");
}
.cid-utqlWtudjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqlWtudjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqlWtudjL .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utClas0VkH {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/trump.jpg");
}
.cid-utClas0VkH .mbr-fallback-image.disabled {
  display: none;
}
.cid-utClas0VkH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utClas0VkH .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utI8zIYynq {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fuga-cerebros.png");
}
.cid-utI8zIYynq .mbr-fallback-image.disabled {
  display: none;
}
.cid-utI8zIYynq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utI8zIYynq .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utNxcoHFc3 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/la-crisis-europea-la-resolvera-europa.jpg");
}
.cid-utNxcoHFc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNxcoHFc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utNxcoHFc3 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utNBP8rflS {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bitcoin2.jpg");
}
.cid-utNBP8rflS .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNBP8rflS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utNBP8rflS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utNBP8rflS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utNBP8rflS .text-wrapper {
    padding: 2rem;
  }
}
.cid-utNBP8rflS .mbr-section-title {
  color: #ffffff;
}
.cid-utNBP8rflS .mbr-text {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utTq7N2P8A {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/sociedad-espanola.jpg");
}
.cid-utTq7N2P8A .mbr-fallback-image.disabled {
  display: none;
}
.cid-utTq7N2P8A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utTq7N2P8A .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utZcTkaDPG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoin2.jpg");
}
.cid-utZcTkaDPG .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZcTkaDPG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZcTkaDPG .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uu4WAehbDK {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/vivienda.jpg");
}
.cid-uu4WAehbDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu4WAehbDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu4WAehbDK .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uu5hy2VmER {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/patronbitcoin.jpg");
}
.cid-uu5hy2VmER .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu5hy2VmER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu5hy2VmER .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuaM446Xku {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/lingotesoro.jpg");
}
.cid-uuaM446Xku .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuaM446Xku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuaM446Xku .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuh7P3UNdK {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/interescompuesto.jpg");
}
.cid-uuh7P3UNdK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuh7P3UNdK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuh7P3UNdK .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuhWU9hHmV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bancatradicional.jpg");
}
.cid-uuhWU9hHmV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuhWU9hHmV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuhWU9hHmV .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uumEGiaM9h {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/trumpoltica.jpg");
}
.cid-uumEGiaM9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uumEGiaM9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uumEGiaM9h .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uunnvZdLzR {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cbdcvsefectivo.jpeg");
}
.cid-uunnvZdLzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uunnvZdLzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uunnvZdLzR .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uusyNhoUKR {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbrigde.jpg");
}
.cid-uusyNhoUKR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uusyNhoUKR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uusyNhoUKR .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuyfx6ujyL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/deudapublica.jpg");
}
.cid-uuyfx6ujyL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyfx6ujyL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuyfx6ujyL .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuzAuOzfru {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitsalida.jpeg");
}
.cid-uuzAuOzfru .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuzAuOzfru .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuzAuOzfru .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuEcmbHzRL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/desisocial.jpg");
}
.cid-uuEcmbHzRL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuEcmbHzRL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuEcmbHzRL .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuJDmwP4fF {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pobreza.jpg");
}
.cid-uuJDmwP4fF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuJDmwP4fF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuJDmwP4fF .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuPrMzfXzl {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/euro-digital.jpg");
}
.cid-uuPrMzfXzl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuPrMzfXzl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuPrMzfXzl .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuVZbItDcL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pobrezapib.jpg");
}
.cid-uuVZbItDcL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuVZbItDcL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuVZbItDcL .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv1ybJPzIu {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/crisisbancaria.jpg");
}
.cid-uv1ybJPzIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv1ybJPzIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv1ybJPzIu .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv206l3Zcq {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/7contratos.jpg");
}
.cid-uv206l3Zcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv206l3Zcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv206l3Zcq .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv86TrFnwz {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/jubilacionboomer.jpg");
}
.cid-uv86TrFnwz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv86TrFnwz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv86TrFnwz .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvdrOY0LCk {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/11rascacielos.jpg");
}
.cid-uvdrOY0LCk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvdrOY0LCk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvdrOY0LCk .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvdR72S1Ja {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1presupuesto.jpg");
}
.cid-uvdR72S1Ja .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvdR72S1Ja .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvdR72S1Ja .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvixkyCYQV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/calculos-con-dinero.jpg");
}
.cid-uvixkyCYQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvixkyCYQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvixkyCYQV .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvoW9ZVulY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/escritorio-inversor.jpg");
}
.cid-uvoW9ZVulY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvoW9ZVulY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvoW9ZVulY .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvuqRarvVJ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/entrada-a-oficinas.jpg");
}
.cid-uvuqRarvVJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvuqRarvVJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvuqRarvVJ .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvGWyQtWMi {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ventadeactivos.jpg");
}
.cid-uvGWyQtWMi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvGWyQtWMi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvGWyQtWMi .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvLUOdQ8G6 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dinerodueno.jpg");
}
.cid-uvLUOdQ8G6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvLUOdQ8G6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvLUOdQ8G6 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvSd3s5bYh {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cbdc-minorista-1.jpg");
}
.cid-uvSd3s5bYh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvSd3s5bYh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvSd3s5bYh .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvYrLqCF3h {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/futuropensiones.jpeg");
}
.cid-uvYrLqCF3h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvYrLqCF3h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvYrLqCF3h .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw4akxQHlD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoinvscbdc.jpg");
}
.cid-uw4akxQHlD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw4akxQHlD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw4akxQHlD .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw4wPY0RLB {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoininversion.jpg");
}
.cid-uw4wPY0RLB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw4wPY0RLB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw4wPY0RLB .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwa98Ivpfs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hundidolar.jpg");
}
.cid-uwa98Ivpfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwa98Ivpfs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwa98Ivpfs .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwr0pF3Vcq {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bienestarsocial.jpg");
}
.cid-uwr0pF3Vcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwr0pF3Vcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwr0pF3Vcq .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwx3ZsaCa9 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/elonmusk.jpg");
}
.cid-uwx3ZsaCa9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwx3ZsaCa9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwx3ZsaCa9 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwCwzXidLr {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/conocimiento.jpg");
}
.cid-uwCwzXidLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwCwzXidLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwCwzXidLr .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwLc2HtGIQ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/lablockchain.jpg");
}
.cid-uwLc2HtGIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLc2HtGIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLc2HtGIQ .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwRauvsLn0 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/clase-media.jpeg");
}
.cid-uwRauvsLn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRauvsLn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRauvsLn0 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ux3TX64CEK {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/rockefellerfoto.jpg");
}
.cid-ux3TX64CEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux3TX64CEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux3TX64CEK .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxoavo6Lf5 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/perseveranciafinanciera.jpg");
}
.cid-uxoavo6Lf5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxoavo6Lf5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxoavo6Lf5 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxuOlqNKoG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/finanzaspersonales.jpeg");
}
.cid-uxuOlqNKoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxuOlqNKoG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxuOlqNKoG .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxB6IU1JOU {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/enpobresimientooculto.jpg");
}
.cid-uxB6IU1JOU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxB6IU1JOU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxB6IU1JOU .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxMNXyfYz7 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/microstrategy.jpg");
}
.cid-uxMNXyfYz7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxMNXyfYz7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxMNXyfYz7 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxWkS1yJf1 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/reservafederal.jpg");
}
.cid-uxWkS1yJf1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxWkS1yJf1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxWkS1yJf1 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uybFMr0t1j {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alemaniasehunde.jpeg");
}
.cid-uybFMr0t1j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uybFMr0t1j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uybFMr0t1j .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uytB6RyLqT {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/leonardo-phoenix-10-a-hauntingly-beautiful-digital-illustratio.jpg");
}
.cid-uytB6RyLqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uytB6RyLqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uytB6RyLqT .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyEabH4su8 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/que-les-pasa-a-la-gente-que-gana-la-lotera.jpg");
}
.cid-uyEabH4su8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyEabH4su8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyEabH4su8 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyO6dx5ZgF {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/leonardo-phoenix-10-a-serene-and-organized-desk-scene-with-a-f-1.jpg");
}
.cid-uyO6dx5ZgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyO6dx5ZgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyO6dx5ZgF .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uz5nWvRM5J {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teletrabajo-desde-casa.jpg");
}
.cid-uz5nWvRM5J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uz5nWvRM5J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uz5nWvRM5J .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uz8mDCxhuT {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/chinavsusa.jpg");
}
.cid-uz8mDCxhuT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uz8mDCxhuT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uz8mDCxhuT .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzdxmYJ3Q3 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/invertirenbitcoinprin.jpg");
}
.cid-uzdxmYJ3Q3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdxmYJ3Q3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdxmYJ3Q3 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzpEZoIiMd {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/activosdigitales.jpg");
}
.cid-uzpEZoIiMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzpEZoIiMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzpEZoIiMd .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzsCiYUDaJ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/crisisfinanciera.jpg");
}
.cid-uzsCiYUDaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzsCiYUDaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzsCiYUDaJ .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzPZyqjBcN {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/la-carrera-de-la-rata.jpg");
}
.cid-uzPZyqjBcN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzPZyqjBcN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzPZyqjBcN .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA7oQobJQq {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/orodesastre.jpg");
}
.cid-uA7oQobJQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA7oQobJQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA7oQobJQq .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAe4V3fd5E {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fintechglobal.jpg");
}
.cid-uAe4V3fd5E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAe4V3fd5E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAe4V3fd5E .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAreeYhYza {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/trump-y-bitcoin.jpg");
}
.cid-uAreeYhYza .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAreeYhYza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAreeYhYza .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAD0byMqx9 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/erafintech.jpg");
}
.cid-uAD0byMqx9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAD0byMqx9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAD0byMqx9 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAMVd66wIo {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ultraizquierda.jpg");
}
.cid-uAMVd66wIo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMVd66wIo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMVd66wIo .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uByw6Djrxi {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/noimpuestos.jpg");
}
.cid-uByw6Djrxi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uByw6Djrxi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uByw6Djrxi .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBEcgKKVII {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/sistemafinan.jpg");
}
.cid-uBEcgKKVII .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBEcgKKVII .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBEcgKKVII .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBRVwjUZqO {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/beneprivatizacion.jpg");
}
.cid-uBRVwjUZqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRVwjUZqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRVwjUZqO .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uC917womRU {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/quiebraemp.jpg");
}
.cid-uC917womRU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC917womRU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC917womRU .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCjNXcFCMF {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/asesoresta.jpg");
}
.cid-uCjNXcFCMF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCjNXcFCMF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCjNXcFCMF .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCteiiaAjZ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/oligobanca.jpg");
}
.cid-uCteiiaAjZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCteiiaAjZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCteiiaAjZ .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCIqd3P8vf {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoinluch.jpg");
}
.cid-uCIqd3P8vf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCIqd3P8vf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCIqd3P8vf .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCMlWOgWbO {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pobrezapobla.jpg");
}
.cid-uCMlWOgWbO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMlWOgWbO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMlWOgWbO .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uD3DJ89nqK {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/inflacionestafa.jpg");
}
.cid-uD3DJ89nqK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD3DJ89nqK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD3DJ89nqK .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDeAtwrgZt {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/crisisayudas.jpg");
}
.cid-uDeAtwrgZt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDeAtwrgZt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDeAtwrgZt .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDnaPMagIN {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/empoinfla.jpg");
}
.cid-uDnaPMagIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDnaPMagIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDnaPMagIN .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDNAczZ5ZT {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/sincontrol.jpg");
}
.cid-uDNAczZ5ZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDNAczZ5ZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDNAczZ5ZT .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDYBJpOpu5 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/masescaso.jpg");
}
.cid-uDYBJpOpu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDYBJpOpu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDYBJpOpu5 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uE5y43VUjY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/menospoder.jpg");
}
.cid-uE5y43VUjY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE5y43VUjY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uE5y43VUjY .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uE79JiMaoH {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tribusupremo.jpg");
}
.cid-uE79JiMaoH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE79JiMaoH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uE79JiMaoH .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEbnxcSa0z {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/grancrisis.jpg");
}
.cid-uEbnxcSa0z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEbnxcSa0z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEbnxcSa0z .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEbQjrlIOL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoin1-1.jpg");
}
.cid-uEbQjrlIOL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEbQjrlIOL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEbRx4Bfif {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/patronbitcoin-1.jpg");
}
.cid-uEbRx4Bfif .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEbRx4Bfif .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEbRx4Bfif .row {
  flex-direction: row-reverse;
}
.cid-uEbRx4Bfif .video-wrapper iframe {
  width: 100%;
}
.cid-uEbRx4Bfif .mbr-section-title,
.cid-uEbRx4Bfif .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEbRx4Bfif .text-wrapper {
    padding: 2rem;
  }
}
.cid-uEbRx4Bfif .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEbTv6kuVs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/austin-distel-gofbjlqizfu-unsplash-3-1466x977.jpg");
}
.cid-uEbTv6kuVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEbTv6kuVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEbUoPkiOY {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoin5-1.jpg");
}
.cid-uEbUoPkiOY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEbUoPkiOY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEbUoPkiOY .video-wrapper iframe {
  width: 100%;
}
.cid-uEbUoPkiOY .mbr-section-title,
.cid-uEbUoPkiOY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEbUoPkiOY .text-wrapper {
    padding: 2rem;
  }
}
.cid-uEbUoPkiOY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEewBa0MZL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/burbujabitcoin-1.jpg");
}
.cid-uEewBa0MZL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEewBa0MZL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEgCe0d7AM {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoinvscbdc-1.jpg");
}
.cid-uEgCe0d7AM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEgCe0d7AM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEhjn67uUj {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/quiebrabancos.jpg");
}
.cid-uEhjn67uUj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEhjn67uUj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEhjn67uUj .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEnqxVGyt6 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cyberbitcoin.jpg");
}
.cid-uEnqxVGyt6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEnqxVGyt6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEnqxVGyt6 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEyaV68Zwl {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/evolucionbitco.jpg");
}
.cid-uEyaV68Zwl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEyaV68Zwl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEyaV68Zwl .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEVzggvLeP {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoinydine.jpg");
}
.cid-uEVzggvLeP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEVzggvLeP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEVzggvLeP .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFdgD1K2eJ {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/separacion.jpg");
}
.cid-uFdgD1K2eJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdgD1K2eJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdgD1K2eJ .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFXhZpyUEr {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/eliminarcorrupcion.jpg");
}
.cid-uFXhZpyUEr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXhZpyUEr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXhZpyUEr .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGiay3CYzR {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/controlartudinero.jpg");
}
.cid-uGiay3CYzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGiay3CYzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGiay3CYzR .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzv6fnvil {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoinincosfis.jpg");
}
.cid-uGzv6fnvil .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzv6fnvil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGzv6fnvil .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHCq0ngmlt {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoin-es-portable-y-transmisible.png");
}
.cid-uHCq0ngmlt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHCq0ngmlt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHCq0ngmlt .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHQpvq4J3H {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoin-protege-nuestra-riqueza-en-periodos-largos-de-tiempo.png");
}
.cid-uHQpvq4J3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHQpvq4J3H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHQpvq4J3H .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIsjBLDpDI {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoin-resiste-censura-de-terceros.png");
}
.cid-uIsjBLDpDI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIsjBLDpDI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIsjBLDpDI .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJVvVrtJnd {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/2bitcoin-1.jpg");
}
.cid-uJVvVrtJnd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJVvVrtJnd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJVvVrtJnd .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKeBpa1rot {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/estafabancaria.png");
}
.cid-uKeBpa1rot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKeBpa1rot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKeBpa1rot .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNmsPv8eZm {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/1presupuesto-1.jpg");
}
.cid-uNmsPv8eZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmsPv8eZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNslbUxp68 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/copia-1.jpg");
}
.cid-uNslbUxp68 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNslbUxp68 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNslbUxp68 .content-wrapper {
  background: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uNslbUxp68 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uNslbUxp68 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNslbUxp68 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uNslbUxp68 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uNslbUxp68 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uNslbUxp68 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uNslbUxp68 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNmtgcRG5z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/asesoresta-1.jpg");
}
.cid-uNmtgcRG5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmtgcRG5z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNmtgcRG5z .mbr-section-subtitle {
  text-align: left;
}
.cid-uNmuakv0Kf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/7contratos-1.jpg");
}
.cid-uNmuakv0Kf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmuakv0Kf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNmuakv0Kf .mbr-section-subtitle {
  text-align: left;
}
.cid-uNmvbvBeYh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/11rascacielos-1.jpg");
}
.cid-uNmvbvBeYh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmvbvBeYh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNmvbvBeYh .mbr-section-subtitle {
  text-align: left;
}
.cid-uNmw6SDdqf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aleks-dorohovich-njdwuhmay8a-unsplash-1-1466x983.jpg");
}
.cid-uNmw6SDdqf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmw6SDdqf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNmw6SDdqf .mbr-section-subtitle {
  text-align: left;
}
.cid-uNmyg6Lf0u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/andre-benz-leikiomsxfs-unsplash-1-2000x3000.jpg");
}
.cid-uNmyg6Lf0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmyg6Lf0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNmyg6Lf0u .mbr-section-subtitle {
  text-align: left;
}
.cid-uNmyMlfhxb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/atencion-2-318x159.jpg");
}
.cid-uNmyMlfhxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmyMlfhxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNmyMlfhxb .mbr-section-subtitle {
  text-align: left;
}
.cid-uNmzkCPPVH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-kampus-production-8353791.jpg");
}
.cid-uNmzkCPPVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmzkCPPVH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNmzkCPPVH .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNqgSmlhBa {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/austin-distel-mpn7xjkq-ns-unsplash-2-1466x1100.jpg");
}
.cid-uNqgSmlhBa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNqgSmlhBa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNscQ6sWXI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background4-2-1836x1234.jpg");
}
.cid-uNscQ6sWXI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNscQ6sWXI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNscQ6sWXI .content-wrapper {
  background: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uNscQ6sWXI .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uNscQ6sWXI .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNscQ6sWXI .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uNscQ6sWXI .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uNscQ6sWXI .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uNscQ6sWXI .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uNscQ6sWXI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNsmqAL3a2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-tima-miroshnichenko-7567486.jpg");
}
.cid-uNsmqAL3a2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNsmqAL3a2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNsmqAL3a2 .mbr-section-subtitle {
  text-align: left;
}
.cid-uNsnHNbsSE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-210575.jpg");
}
.cid-uNsnHNbsSE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNsnHNbsSE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNsnHNbsSE .mbr-section-subtitle {
  text-align: left;
}
.cid-uNsouhbrJv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/william-iven-spvhcbuki6e-unsplash-1-2000x1328.jpg");
}
.cid-uNsouhbrJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNsouhbrJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNsouhbrJv .mbr-section-subtitle {
  text-align: left;
}
.cid-uNspT7EpTR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teletrabajo-desde-casa-1.jpg");
}
.cid-uNspT7EpTR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNspT7EpTR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNspT7EpTR .mbr-section-subtitle {
  text-align: left;
}
.cid-uNsqK3tiV8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-andrea-piacquadio-3753010.jpg");
}
.cid-uNsqK3tiV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNsqK3tiV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNsqK3tiV8 .mbr-section-subtitle {
  text-align: left;
}
.cid-uOjTHOMM38 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ventadeactivos-1.jpg");
}
.cid-uOjTHOMM38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjTHOMM38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjTHOMM38 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNCZR9kTIi {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tribunal-supremo.jpg");
}
.cid-uNCZR9kTIi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNCZR9kTIi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNCZR9kTIi .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOinJizaXw {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/estrategiasfraude.png");
}
.cid-uOinJizaXw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOinJizaXw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOinJizaXw .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOXVWtOFPu {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/buitrefondo.jpeg");
}
.cid-uOXVWtOFPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOXVWtOFPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOXVWtOFPu .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP277Mu406 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/habitos.jpg");
}
.cid-uP277Mu406 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP277Mu406 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP277Mu406 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPgnGW7VYY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cochesventa.jpg");
}
.cid-uPgnGW7VYY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPgnGW7VYY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPgnGW7VYY .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPplQXJpaU {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/13foto-bitcoin.jpg");
}
.cid-uPplQXJpaU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPplQXJpaU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPplQXJpaU .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPuKBkLMwD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/miles-de-dolares.jpg");
}
.cid-uPuKBkLMwD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPuKBkLMwD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPuKBkLMwD .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQbaqIyxH9 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background4-2-1836x1234.jpg");
}
.cid-uQbaqIyxH9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQbaqIyxH9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQbaqIyxH9 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQeTRlwy1b {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1presupuesto-1.jpg");
}
.cid-uQeTRlwy1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQeTRlwy1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQeTRlwy1b .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQlJCjmb3U {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/advertencia-saylor.jpg");
}
.cid-uQlJCjmb3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQlJCjmb3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQlJCjmb3U .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQypFKm5AW {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/leonardo-phoenix-10-a-young-ambitious-buyer-with-a-determined-1.jpg");
}
.cid-uQypFKm5AW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQypFKm5AW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQypFKm5AW .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQyADPyQVF {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/leonardo-phoenix-10-create-an-image-that-reflects-bitcoins-all.jpg");
}
.cid-uQyADPyQVF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyADPyQVF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyBmfAQh6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/leonardo-phoenix-10-a-dramatic-highcontrast-illustration-depic.jpg");
}
.cid-uQyBmfAQh6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyBmfAQh6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyBmfAQh6 .content-wrapper {
  background: #4479d9;
}
@media (max-width: 991px) {
  .cid-uQyBmfAQh6 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uQyBmfAQh6 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyBmfAQh6 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uQyBmfAQh6 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQyBmfAQh6 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uQyBmfAQh6 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uQyBmfAQh6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQyBmfAQh6 .mbr-text,
.cid-uQyBmfAQh6 .mbr-section-btn {
  color: #ffffff;
}
.cid-uQyDa9stCr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-uQyDa9stCr .line {
  background-color: #e6c63b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQyDa9stCr .mbr-text {
  color: #ffffff;
}
.cid-uQyFoq5B3o {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/la-revolucin-financiera-del-futuro.jpg");
}
.cid-uQyFoq5B3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyFoq5B3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyFoq5B3o .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uQyFoq5B3o .mbr-section-title {
  color: #ffffff;
}
.cid-uQyGp2wNNM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/advertencia-saylor.jpg");
}
.cid-uQyGp2wNNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyGp2wNNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyGp2wNNM .mbr-text,
.cid-uQyGp2wNNM .mbr-section-btn {
  text-align: left;
}
.cid-uQyPyMnnqg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/leonardo-phoenix-10-a-middleaged-man-with-a-confident-smile-we.jpg");
}
.cid-uQyPyMnnqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyPyMnnqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyPyMnnqg .mbr-text,
.cid-uQyPyMnnqg .mbr-section-btn {
  text-align: left;
}
.cid-uQyR1CIRJv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-uQyR1CIRJv .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uQyR1CIRJv .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uQyR1CIRJv .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uQyUIPzgld {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/leonardo-phoenix-10-a-abandoned-bank-building-with-broken-wind.jpg");
}
.cid-uQyUIPzgld .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyUIPzgld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyUIPzgld .content-wrapper {
  background: #ff9966;
}
@media (max-width: 991px) {
  .cid-uQyUIPzgld .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uQyUIPzgld .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyUIPzgld .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uQyUIPzgld .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQyUIPzgld .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uQyUIPzgld .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uQyUIPzgld .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQPn4mq0A5 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-olia-danilevich-5466814.jpg");
}
.cid-uQPn4mq0A5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQPn4mq0A5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQPn4mq0A5 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRcFgUNUmy {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-alesiakozik-6770774.jpg");
}
.cid-uRcFgUNUmy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcFgUNUmy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcFgUNUmy .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRzLxUwwjO {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-divinetechygirl-1181244.jpg");
}
.cid-uRzLxUwwjO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRzLxUwwjO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRzLxUwwjO .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRQYFsvXAj {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-karolina-grabowska-5980738.jpg");
}
.cid-uRQYFsvXAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRQYFsvXAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRQYFsvXAj .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsyly1QGUC {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-v1WnPwTfs2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1WnPwTfs2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1WnPwTfs2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1WnPwTfs2 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v1WnPwTfs2 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v1WnPwTfs2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v1WnPwTfs2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v1WnPwTfs2 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v1WnPwTfs2 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v1WnPwTfs2 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v1WnPwTfs2 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v1WnPwTfs2 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v1WnPwTfs2 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v10kLC8aTr {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v10kLC8aTr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v10kLC8aTr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v10kLC8aTr .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v10kLC8aTr .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v10kLC8aTr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v10kLC8aTr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v10kLC8aTr .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v10kLC8aTr .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v10kLC8aTr .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v10kLC8aTr .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v10kLC8aTr .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v10kLC8aTr .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uZksZ5xVET {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uZksZ5xVET .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZksZ5xVET .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZksZ5xVET .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uZksZ5xVET .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uZksZ5xVET .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZksZ5xVET .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uZksZ5xVET .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uZksZ5xVET .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uZksZ5xVET .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZksZ5xVET .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uZksZ5xVET .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZksZ5xVET .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uVm4GjZ8KN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uVm4GjZ8KN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVm4GjZ8KN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVm4GjZ8KN .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uVm4GjZ8KN .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uVm4GjZ8KN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uVm4GjZ8KN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uVm4GjZ8KN .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uVm4GjZ8KN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uVm4GjZ8KN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uVm4GjZ8KN .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uVm4GjZ8KN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uVm4GjZ8KN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uTWQ9cIrdR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTWQ9cIrdR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTWQ9cIrdR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTWQ9cIrdR .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uTWQ9cIrdR .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uTWQ9cIrdR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uTWQ9cIrdR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uTWQ9cIrdR .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uTWQ9cIrdR .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uTWQ9cIrdR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uTWQ9cIrdR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uTWQ9cIrdR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTWQ9cIrdR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uTk0bAbgyZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTk0bAbgyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTk0bAbgyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTk0bAbgyZ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uTk0bAbgyZ .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uTk0bAbgyZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uTk0bAbgyZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uTk0bAbgyZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uTk0bAbgyZ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uTk0bAbgyZ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uTk0bAbgyZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uTk0bAbgyZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTk0bAbgyZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uSkOAZT65o {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uSkOAZT65o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkOAZT65o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkOAZT65o .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uSkOAZT65o .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uSkOAZT65o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uSkOAZT65o .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uSkOAZT65o .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uSkOAZT65o .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uSkOAZT65o .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSkOAZT65o .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uSkOAZT65o .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSkOAZT65o .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uRQX60x08v {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uRQX60x08v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRQX60x08v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRQX60x08v .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uRQX60x08v .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uRQX60x08v .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uRQX60x08v .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uRQX60x08v .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uRQX60x08v .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uRQX60x08v .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uRQX60x08v .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uRQX60x08v .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRQX60x08v .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uRcDL9ch4f {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uRcDL9ch4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcDL9ch4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcDL9ch4f .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uRcDL9ch4f .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uRcDL9ch4f .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uRcDL9ch4f .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uRcDL9ch4f .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uRcDL9ch4f .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uRcDL9ch4f .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uRcDL9ch4f .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uRcDL9ch4f .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRcDL9ch4f .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uQlHXVqDYu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uQlHXVqDYu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQlHXVqDYu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQlHXVqDYu .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uQlHXVqDYu .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uQlHXVqDYu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQlHXVqDYu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uQlHXVqDYu .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uQlHXVqDYu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uQlHXVqDYu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uQlHXVqDYu .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uQlHXVqDYu .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQlHXVqDYu .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uQb8hh9Sfb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uQb8hh9Sfb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQb8hh9Sfb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQb8hh9Sfb .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uQb8hh9Sfb .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uQb8hh9Sfb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQb8hh9Sfb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uQb8hh9Sfb .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uQb8hh9Sfb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uQb8hh9Sfb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uQb8hh9Sfb .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uQb8hh9Sfb .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQb8hh9Sfb .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uPpjGsZJeM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uPpjGsZJeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPpjGsZJeM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPpjGsZJeM .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uPpjGsZJeM .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uPpjGsZJeM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uPpjGsZJeM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uPpjGsZJeM .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uPpjGsZJeM .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uPpjGsZJeM .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPpjGsZJeM .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uPpjGsZJeM .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPpjGsZJeM .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uJVtS7iIRF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uJVtS7iIRF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJVtS7iIRF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJVtS7iIRF .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uJVtS7iIRF .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uJVtS7iIRF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uJVtS7iIRF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uJVtS7iIRF .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uJVtS7iIRF .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uJVtS7iIRF .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uJVtS7iIRF .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uJVtS7iIRF .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJVtS7iIRF .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uIsirmaYlN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uIsirmaYlN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIsirmaYlN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIsirmaYlN .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uIsirmaYlN .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uIsirmaYlN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uIsirmaYlN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uIsirmaYlN .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uIsirmaYlN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uIsirmaYlN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uIsirmaYlN .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uIsirmaYlN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uIsirmaYlN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uHQon3ajFm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uHQon3ajFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHQon3ajFm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHQon3ajFm .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uHQon3ajFm .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uHQon3ajFm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHQon3ajFm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uHQon3ajFm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uHQon3ajFm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uHQon3ajFm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uHQon3ajFm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uHQon3ajFm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHQon3ajFm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uHCoHRcAVV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uHCoHRcAVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHCoHRcAVV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHCoHRcAVV .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uHCoHRcAVV .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uHCoHRcAVV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHCoHRcAVV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uHCoHRcAVV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uHCoHRcAVV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uHCoHRcAVV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uHCoHRcAVV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uHCoHRcAVV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHCoHRcAVV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGztMLo4kT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uGztMLo4kT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGztMLo4kT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGztMLo4kT .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGztMLo4kT .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGztMLo4kT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGztMLo4kT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGztMLo4kT .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGztMLo4kT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGztMLo4kT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGztMLo4kT .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGztMLo4kT .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGztMLo4kT .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uFXgzy5mZx {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uFXgzy5mZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXgzy5mZx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXgzy5mZx .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uFXgzy5mZx .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uFXgzy5mZx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uFXgzy5mZx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uFXgzy5mZx .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uFXgzy5mZx .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uFXgzy5mZx .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uFXgzy5mZx .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uFXgzy5mZx .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFXgzy5mZx .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uFdfp1qb4T {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uFdfp1qb4T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFdfp1qb4T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFdfp1qb4T .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uFdfp1qb4T .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uFdfp1qb4T .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uFdfp1qb4T .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uFdfp1qb4T .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uFdfp1qb4T .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uFdfp1qb4T .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uFdfp1qb4T .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uFdfp1qb4T .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFdfp1qb4T .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uEVxSlKVSQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uEVxSlKVSQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEVxSlKVSQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEVxSlKVSQ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uEVxSlKVSQ .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uEVxSlKVSQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uEVxSlKVSQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEVxSlKVSQ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uEVxSlKVSQ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEVxSlKVSQ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uEVxSlKVSQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uEVxSlKVSQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEVxSlKVSQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uEy92k6Ds8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uEy92k6Ds8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEy92k6Ds8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEy92k6Ds8 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uEy92k6Ds8 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uEy92k6Ds8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uEy92k6Ds8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEy92k6Ds8 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uEy92k6Ds8 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEy92k6Ds8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uEy92k6Ds8 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uEy92k6Ds8 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEy92k6Ds8 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uEnphcN1Ma {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uEnphcN1Ma .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEnphcN1Ma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEnphcN1Ma .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uEnphcN1Ma .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uEnphcN1Ma .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uEnphcN1Ma .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEnphcN1Ma .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uEnphcN1Ma .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEnphcN1Ma .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uEnphcN1Ma .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uEnphcN1Ma .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEnphcN1Ma .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uEbmpqKXIb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uEbmpqKXIb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEbmpqKXIb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEbmpqKXIb .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uEbmpqKXIb .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uEbmpqKXIb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uEbmpqKXIb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEbmpqKXIb .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uEbmpqKXIb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEbmpqKXIb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uEbmpqKXIb .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uEbmpqKXIb .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEbmpqKXIb .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uE5wpniDha {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uE5wpniDha .mbr-fallback-image.disabled {
  display: none;
}
.cid-uE5wpniDha .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uE5wpniDha .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uE5wpniDha .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uE5wpniDha .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uE5wpniDha .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uE5wpniDha .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uE5wpniDha .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uE5wpniDha .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uE5wpniDha .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uE5wpniDha .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uE5wpniDha .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDYA94HZe4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uDYA94HZe4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDYA94HZe4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDYA94HZe4 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDYA94HZe4 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uDYA94HZe4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDYA94HZe4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDYA94HZe4 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDYA94HZe4 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDYA94HZe4 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDYA94HZe4 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDYA94HZe4 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDYA94HZe4 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDNyStPVYU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uDNyStPVYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDNyStPVYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDNyStPVYU .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDNyStPVYU .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uDNyStPVYU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDNyStPVYU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDNyStPVYU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDNyStPVYU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDNyStPVYU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDNyStPVYU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDNyStPVYU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDNyStPVYU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDn5YdrQ0U {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uDn5YdrQ0U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDn5YdrQ0U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDn5YdrQ0U .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDn5YdrQ0U .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uDn5YdrQ0U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDn5YdrQ0U .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDn5YdrQ0U .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDn5YdrQ0U .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDn5YdrQ0U .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDn5YdrQ0U .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDn5YdrQ0U .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDn5YdrQ0U .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDezm7Z6nm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uDezm7Z6nm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDezm7Z6nm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDezm7Z6nm .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDezm7Z6nm .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uDezm7Z6nm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDezm7Z6nm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDezm7Z6nm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDezm7Z6nm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDezm7Z6nm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDezm7Z6nm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDezm7Z6nm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDezm7Z6nm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uD3C3yLtoO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uD3C3yLtoO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD3C3yLtoO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD3C3yLtoO .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uD3C3yLtoO .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uD3C3yLtoO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uD3C3yLtoO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uD3C3yLtoO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uD3C3yLtoO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uD3C3yLtoO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uD3C3yLtoO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uD3C3yLtoO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uD3C3yLtoO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uCMkMksJb5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uCMkMksJb5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCMkMksJb5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCMkMksJb5 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uCMkMksJb5 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uCMkMksJb5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uCMkMksJb5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uCMkMksJb5 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uCMkMksJb5 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uCMkMksJb5 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uCMkMksJb5 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uCMkMksJb5 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCMkMksJb5 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uCIpaQfjLb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uCIpaQfjLb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCIpaQfjLb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCIpaQfjLb .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uCIpaQfjLb .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uCIpaQfjLb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uCIpaQfjLb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uCIpaQfjLb .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uCIpaQfjLb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uCIpaQfjLb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uCIpaQfjLb .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uCIpaQfjLb .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCIpaQfjLb .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uCtd5AepDo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uCtd5AepDo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCtd5AepDo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCtd5AepDo .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uCtd5AepDo .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uCtd5AepDo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uCtd5AepDo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uCtd5AepDo .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uCtd5AepDo .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uCtd5AepDo .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uCtd5AepDo .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uCtd5AepDo .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCtd5AepDo .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uCjMBlxlJ0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uCjMBlxlJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCjMBlxlJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCjMBlxlJ0 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uCjMBlxlJ0 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uCjMBlxlJ0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uCjMBlxlJ0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uCjMBlxlJ0 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uCjMBlxlJ0 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uCjMBlxlJ0 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uCjMBlxlJ0 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uCjMBlxlJ0 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uCjMBlxlJ0 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uC8ZRHqqfN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uC8ZRHqqfN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC8ZRHqqfN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC8ZRHqqfN .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uC8ZRHqqfN .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uC8ZRHqqfN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC8ZRHqqfN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uC8ZRHqqfN .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uC8ZRHqqfN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uC8ZRHqqfN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uC8ZRHqqfN .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uC8ZRHqqfN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC8ZRHqqfN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBRTVN0OWH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBRTVN0OWH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRTVN0OWH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRTVN0OWH .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBRTVN0OWH .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uBRTVN0OWH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBRTVN0OWH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uBRTVN0OWH .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uBRTVN0OWH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uBRTVN0OWH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uBRTVN0OWH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBRTVN0OWH .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBRTVN0OWH .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uBE9sIrVtH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBE9sIrVtH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBE9sIrVtH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBE9sIrVtH .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBE9sIrVtH .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uBE9sIrVtH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBE9sIrVtH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uBE9sIrVtH .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uBE9sIrVtH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uBE9sIrVtH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uBE9sIrVtH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uBE9sIrVtH .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBE9sIrVtH .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uByv1SFsUF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uByv1SFsUF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uByv1SFsUF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uByv1SFsUF .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uByv1SFsUF .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uByv1SFsUF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uByv1SFsUF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uByv1SFsUF .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uByv1SFsUF .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uByv1SFsUF .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uByv1SFsUF .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uByv1SFsUF .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uByv1SFsUF .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uAMU2ORNR7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uAMU2ORNR7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMU2ORNR7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMU2ORNR7 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uAMU2ORNR7 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uAMU2ORNR7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAMU2ORNR7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uAMU2ORNR7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uAMU2ORNR7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uAMU2ORNR7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAMU2ORNR7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uAMU2ORNR7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAMU2ORNR7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uACZ6qR2LG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uACZ6qR2LG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uACZ6qR2LG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uACZ6qR2LG .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uACZ6qR2LG .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uACZ6qR2LG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uACZ6qR2LG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uACZ6qR2LG .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uACZ6qR2LG .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uACZ6qR2LG .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uACZ6qR2LG .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uACZ6qR2LG .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uACZ6qR2LG .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uArcEEgdpr {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uArcEEgdpr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArcEEgdpr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArcEEgdpr .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uArcEEgdpr .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uArcEEgdpr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uArcEEgdpr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uArcEEgdpr .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uArcEEgdpr .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uArcEEgdpr .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uArcEEgdpr .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uArcEEgdpr .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uArcEEgdpr .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uAe3LXjE3c {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uAe3LXjE3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAe3LXjE3c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAe3LXjE3c .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uAe3LXjE3c .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uAe3LXjE3c .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAe3LXjE3c .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uAe3LXjE3c .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uAe3LXjE3c .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uAe3LXjE3c .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAe3LXjE3c .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uAe3LXjE3c .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAe3LXjE3c .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uA7n6yrHlb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uA7n6yrHlb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA7n6yrHlb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA7n6yrHlb .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uA7n6yrHlb .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uA7n6yrHlb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uA7n6yrHlb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uA7n6yrHlb .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uA7n6yrHlb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uA7n6yrHlb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uA7n6yrHlb .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uA7n6yrHlb .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uA7n6yrHlb .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uzsBbaRypD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uzsBbaRypD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzsBbaRypD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzsBbaRypD .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uzsBbaRypD .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uzsBbaRypD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uzsBbaRypD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzsBbaRypD .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uzsBbaRypD .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzsBbaRypD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uzsBbaRypD .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uzsBbaRypD .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uzsBbaRypD .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uz8lh8Dg2S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uz8lh8Dg2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uz8lh8Dg2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uz8lh8Dg2S .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uz8lh8Dg2S .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uz8lh8Dg2S .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uz8lh8Dg2S .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8lh8Dg2S .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uz8lh8Dg2S .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8lh8Dg2S .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uz8lh8Dg2S .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uz8lh8Dg2S .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uz8lh8Dg2S .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uyE8F6hFQy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uyE8F6hFQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyE8F6hFQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyE8F6hFQy .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uyE8F6hFQy .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uyE8F6hFQy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uyE8F6hFQy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyE8F6hFQy .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uyE8F6hFQy .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyE8F6hFQy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uyE8F6hFQy .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uyE8F6hFQy .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uyE8F6hFQy .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uytzD00BMk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uytzD00BMk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uytzD00BMk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uytzD00BMk .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uytzD00BMk .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uytzD00BMk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uytzD00BMk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uytzD00BMk .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uytzD00BMk .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uytzD00BMk .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uytzD00BMk .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uytzD00BMk .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uytzD00BMk .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uybEt0VVfr {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uybEt0VVfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uybEt0VVfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uybEt0VVfr .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uybEt0VVfr .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uybEt0VVfr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uybEt0VVfr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uybEt0VVfr .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uybEt0VVfr .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uybEt0VVfr .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uybEt0VVfr .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uybEt0VVfr .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uybEt0VVfr .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uxWjyo02uX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uxWjyo02uX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxWjyo02uX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxWjyo02uX .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uxWjyo02uX .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uxWjyo02uX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxWjyo02uX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uxWjyo02uX .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uxWjyo02uX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uxWjyo02uX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uxWjyo02uX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uxWjyo02uX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxWjyo02uX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uxMMJfPhpv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uxMMJfPhpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxMMJfPhpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxMMJfPhpv .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uxMMJfPhpv .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uxMMJfPhpv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxMMJfPhpv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uxMMJfPhpv .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uxMMJfPhpv .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uxMMJfPhpv .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uxMMJfPhpv .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uxMMJfPhpv .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxMMJfPhpv .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uxB5DTbGoH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uxB5DTbGoH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxB5DTbGoH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxB5DTbGoH .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uxB5DTbGoH .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uxB5DTbGoH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxB5DTbGoH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uxB5DTbGoH .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uxB5DTbGoH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uxB5DTbGoH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uxB5DTbGoH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uxB5DTbGoH .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxB5DTbGoH .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uxo99hoo6S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uxo99hoo6S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxo99hoo6S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxo99hoo6S .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uxo99hoo6S .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uxo99hoo6S .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxo99hoo6S .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uxo99hoo6S .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uxo99hoo6S .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uxo99hoo6S .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uxo99hoo6S .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uxo99hoo6S .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxo99hoo6S .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwR9aQDUUw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uwR9aQDUUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwR9aQDUUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwR9aQDUUw .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwR9aQDUUw .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uwR9aQDUUw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwR9aQDUUw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwR9aQDUUw .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwR9aQDUUw .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwR9aQDUUw .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwR9aQDUUw .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwR9aQDUUw .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwR9aQDUUw .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwCqQpQyzh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uwCqQpQyzh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwCqQpQyzh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwCqQpQyzh .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwCqQpQyzh .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uwCqQpQyzh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwCqQpQyzh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwCqQpQyzh .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwCqQpQyzh .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwCqQpQyzh .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwCqQpQyzh .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwCqQpQyzh .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwCqQpQyzh .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwqYqpVwY8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uwqYqpVwY8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwqYqpVwY8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwqYqpVwY8 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwqYqpVwY8 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uwqYqpVwY8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwqYqpVwY8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwqYqpVwY8 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwqYqpVwY8 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwqYqpVwY8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwqYqpVwY8 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwqYqpVwY8 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwqYqpVwY8 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwa804cNe1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uwa804cNe1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwa804cNe1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwa804cNe1 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwa804cNe1 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uwa804cNe1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwa804cNe1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwa804cNe1 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwa804cNe1 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwa804cNe1 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwa804cNe1 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwa804cNe1 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwa804cNe1 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uw49nVuRCV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uw49nVuRCV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw49nVuRCV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw49nVuRCV .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uw49nVuRCV .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uw49nVuRCV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uw49nVuRCV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uw49nVuRCV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uw49nVuRCV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uw49nVuRCV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uw49nVuRCV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uw49nVuRCV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw49nVuRCV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvYqLUzep7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvYqLUzep7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvYqLUzep7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvYqLUzep7 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvYqLUzep7 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvYqLUzep7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvYqLUzep7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvYqLUzep7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvYqLUzep7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvYqLUzep7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvYqLUzep7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvYqLUzep7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvYqLUzep7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvSbGVIX3G {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvSbGVIX3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvSbGVIX3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvSbGVIX3G .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvSbGVIX3G .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvSbGVIX3G .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvSbGVIX3G .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvSbGVIX3G .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvSbGVIX3G .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvSbGVIX3G .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvSbGVIX3G .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvSbGVIX3G .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvSbGVIX3G .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvLTeO4jf3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvLTeO4jf3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvLTeO4jf3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvLTeO4jf3 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvLTeO4jf3 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvLTeO4jf3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvLTeO4jf3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvLTeO4jf3 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvLTeO4jf3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvLTeO4jf3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvLTeO4jf3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvLTeO4jf3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvLTeO4jf3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvGUkCSzWD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvGUkCSzWD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvGUkCSzWD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvGUkCSzWD .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvGUkCSzWD .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvGUkCSzWD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvGUkCSzWD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvGUkCSzWD .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvGUkCSzWD .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvGUkCSzWD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvGUkCSzWD .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvGUkCSzWD .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvGUkCSzWD .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvuopJ0jcF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvuopJ0jcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvuopJ0jcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvuopJ0jcF .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvuopJ0jcF .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvuopJ0jcF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvuopJ0jcF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvuopJ0jcF .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvuopJ0jcF .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvuopJ0jcF .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvuopJ0jcF .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvuopJ0jcF .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvuopJ0jcF .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvoRAoRKji {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvoRAoRKji .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvoRAoRKji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvoRAoRKji .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvoRAoRKji .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvoRAoRKji .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvoRAoRKji .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvoRAoRKji .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvoRAoRKji .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvoRAoRKji .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvoRAoRKji .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvoRAoRKji .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvoRAoRKji .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvivyfRJ3U {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvivyfRJ3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvivyfRJ3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvivyfRJ3U .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvivyfRJ3U .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvivyfRJ3U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvivyfRJ3U .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvivyfRJ3U .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvivyfRJ3U .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvivyfRJ3U .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvivyfRJ3U .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvivyfRJ3U .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvivyfRJ3U .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvdqALp9Fz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvdqALp9Fz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvdqALp9Fz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvdqALp9Fz .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvdqALp9Fz .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uvdqALp9Fz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvdqALp9Fz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvdqALp9Fz .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvdqALp9Fz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvdqALp9Fz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvdqALp9Fz .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvdqALp9Fz .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvdqALp9Fz .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uv84I3ko0L {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uv84I3ko0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv84I3ko0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv84I3ko0L .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uv84I3ko0L .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uv84I3ko0L .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uv84I3ko0L .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uv84I3ko0L .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uv84I3ko0L .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uv84I3ko0L .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uv84I3ko0L .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uv84I3ko0L .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uv84I3ko0L .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uv1xe1XBel {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uv1xe1XBel .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv1xe1XBel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv1xe1XBel .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uv1xe1XBel .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uv1xe1XBel .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uv1xe1XBel .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uv1xe1XBel .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uv1xe1XBel .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uv1xe1XBel .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uv1xe1XBel .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uv1xe1XBel .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uv1xe1XBel .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuVYjcNunz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuVYjcNunz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuVYjcNunz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuVYjcNunz .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuVYjcNunz .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuVYjcNunz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuVYjcNunz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuVYjcNunz .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuVYjcNunz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuVYjcNunz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuVYjcNunz .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuVYjcNunz .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuVYjcNunz .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuPqmvS9sL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuPqmvS9sL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuPqmvS9sL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuPqmvS9sL .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuPqmvS9sL .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuPqmvS9sL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuPqmvS9sL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuPqmvS9sL .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuPqmvS9sL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuPqmvS9sL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuPqmvS9sL .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuPqmvS9sL .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuPqmvS9sL .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuJC5WNjpk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuJC5WNjpk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuJC5WNjpk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuJC5WNjpk .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuJC5WNjpk .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuJC5WNjpk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuJC5WNjpk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuJC5WNjpk .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuJC5WNjpk .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuJC5WNjpk .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuJC5WNjpk .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuJC5WNjpk .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuJC5WNjpk .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuEaWuAJRO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuEaWuAJRO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuEaWuAJRO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuEaWuAJRO .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuEaWuAJRO .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuEaWuAJRO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuEaWuAJRO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuEaWuAJRO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuEaWuAJRO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuEaWuAJRO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuEaWuAJRO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuEaWuAJRO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuEaWuAJRO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuyef1iHcQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuyef1iHcQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyef1iHcQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuyef1iHcQ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuyef1iHcQ .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuyef1iHcQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuyef1iHcQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuyef1iHcQ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuyef1iHcQ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuyef1iHcQ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuyef1iHcQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuyef1iHcQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuyef1iHcQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uusxGlFKGT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uusxGlFKGT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uusxGlFKGT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uusxGlFKGT .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uusxGlFKGT .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uusxGlFKGT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uusxGlFKGT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uusxGlFKGT .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uusxGlFKGT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uusxGlFKGT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uusxGlFKGT .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uusxGlFKGT .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uusxGlFKGT .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uumDCcGBQL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uumDCcGBQL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uumDCcGBQL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uumDCcGBQL .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uumDCcGBQL .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uumDCcGBQL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uumDCcGBQL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uumDCcGBQL .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uumDCcGBQL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uumDCcGBQL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uumDCcGBQL .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uumDCcGBQL .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uumDCcGBQL .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuh5tAo5J2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuh5tAo5J2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuh5tAo5J2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuh5tAo5J2 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuh5tAo5J2 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuh5tAo5J2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuh5tAo5J2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuh5tAo5J2 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuh5tAo5J2 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuh5tAo5J2 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuh5tAo5J2 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuh5tAo5J2 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuh5tAo5J2 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uuaKNclhz6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuaKNclhz6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuaKNclhz6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuaKNclhz6 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uuaKNclhz6 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uuaKNclhz6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuaKNclhz6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uuaKNclhz6 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uuaKNclhz6 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uuaKNclhz6 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uuaKNclhz6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uuaKNclhz6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuaKNclhz6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uu4Vw6w7HU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uu4Vw6w7HU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu4Vw6w7HU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu4Vw6w7HU .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uu4Vw6w7HU .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uu4Vw6w7HU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uu4Vw6w7HU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uu4Vw6w7HU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uu4Vw6w7HU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uu4Vw6w7HU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uu4Vw6w7HU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uu4Vw6w7HU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uu4Vw6w7HU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utZbIxYtps {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utZbIxYtps .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZbIxYtps .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZbIxYtps .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utZbIxYtps .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-utZbIxYtps .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utZbIxYtps .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-utZbIxYtps .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utZbIxYtps .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-utZbIxYtps .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utZbIxYtps .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utZbIxYtps .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utZbIxYtps .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utTovzlygB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utTovzlygB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utTovzlygB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utTovzlygB .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utTovzlygB .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-utTovzlygB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utTovzlygB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-utTovzlygB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utTovzlygB .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-utTovzlygB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utTovzlygB .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utTovzlygB .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utTovzlygB .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utNwjdwZmS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utNwjdwZmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNwjdwZmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utNwjdwZmS .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utNwjdwZmS .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-utNwjdwZmS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utNwjdwZmS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-utNwjdwZmS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utNwjdwZmS .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-utNwjdwZmS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utNwjdwZmS .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utNwjdwZmS .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utNwjdwZmS .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utI7jsBIWB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utI7jsBIWB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utI7jsBIWB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utI7jsBIWB .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utI7jsBIWB .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-utI7jsBIWB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utI7jsBIWB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-utI7jsBIWB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utI7jsBIWB .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-utI7jsBIWB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utI7jsBIWB .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utI7jsBIWB .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utI7jsBIWB .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utCjGuBY6O {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utCjGuBY6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-utCjGuBY6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utCjGuBY6O .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utCjGuBY6O .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-utCjGuBY6O .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utCjGuBY6O .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-utCjGuBY6O .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utCjGuBY6O .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-utCjGuBY6O .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utCjGuBY6O .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utCjGuBY6O .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utCjGuBY6O .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utql1r5zXY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utql1r5zXY .mbr-fallback-image.disabled {
  display: none;
}
.cid-utql1r5zXY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utql1r5zXY .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utql1r5zXY .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-utql1r5zXY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utql1r5zXY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-utql1r5zXY .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utql1r5zXY .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-utql1r5zXY .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utql1r5zXY .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utql1r5zXY .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utql1r5zXY .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utexo313ps {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utexo313ps .mbr-fallback-image.disabled {
  display: none;
}
.cid-utexo313ps .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utexo313ps .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utexo313ps .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-utexo313ps .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utexo313ps .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-utexo313ps .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utexo313ps .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-utexo313ps .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utexo313ps .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utexo313ps .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utexo313ps .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ut06gxEOFO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ut06gxEOFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut06gxEOFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut06gxEOFO .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ut06gxEOFO .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-ut06gxEOFO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ut06gxEOFO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ut06gxEOFO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-ut06gxEOFO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ut06gxEOFO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ut06gxEOFO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ut06gxEOFO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ut06gxEOFO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ud63LrRzQx {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ud63LrRzQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud63LrRzQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud63LrRzQx .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ud63LrRzQx .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-ud63LrRzQx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ud63LrRzQx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ud63LrRzQx .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-ud63LrRzQx .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ud63LrRzQx .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ud63LrRzQx .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ud63LrRzQx .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ud63LrRzQx .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tZstsRGeRJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tZstsRGeRJ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tZstsRGeRJ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tZstsRGeRJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZstsRGeRJ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tZstsRGeRJ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tZstsRGeRJ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tZstsRGeRJ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tZstsRGeRJ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tZstsRGeRJ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZstsRGeRJ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tYpDmWuwRS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tYpDmWuwRS .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tYpDmWuwRS .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tYpDmWuwRS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tYpDmWuwRS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tYpDmWuwRS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tYpDmWuwRS .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tYpDmWuwRS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tYpDmWuwRS .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tYpDmWuwRS .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYpDmWuwRS .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tYjKl7HIAU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tYjKl7HIAU .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tYjKl7HIAU .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tYjKl7HIAU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tYjKl7HIAU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tYjKl7HIAU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tYjKl7HIAU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tYjKl7HIAU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tYjKl7HIAU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tYjKl7HIAU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYjKl7HIAU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tYgEgoD7Oo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tYgEgoD7Oo .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tYgEgoD7Oo .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tYgEgoD7Oo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tYgEgoD7Oo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tYgEgoD7Oo .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tYgEgoD7Oo .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tYgEgoD7Oo .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tYgEgoD7Oo .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tYgEgoD7Oo .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYgEgoD7Oo .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tY9myb59Bi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tY9myb59Bi .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tY9myb59Bi .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tY9myb59Bi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tY9myb59Bi .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tY9myb59Bi .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tY9myb59Bi .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tY9myb59Bi .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tY9myb59Bi .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tY9myb59Bi .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tY9myb59Bi .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tY1XjzlGrV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tY1XjzlGrV .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tY1XjzlGrV .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tY1XjzlGrV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tY1XjzlGrV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tY1XjzlGrV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tY1XjzlGrV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tY1XjzlGrV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tY1XjzlGrV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tY1XjzlGrV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tY1XjzlGrV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tWYSp8pgAe {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tWYSp8pgAe .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tWYSp8pgAe .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tWYSp8pgAe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tWYSp8pgAe .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tWYSp8pgAe .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tWYSp8pgAe .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tWYSp8pgAe .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tWYSp8pgAe .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tWYSp8pgAe .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWYSp8pgAe .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tWTyMTQ7jb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tWTyMTQ7jb .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tWTyMTQ7jb .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tWTyMTQ7jb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tWTyMTQ7jb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tWTyMTQ7jb .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tWTyMTQ7jb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tWTyMTQ7jb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tWTyMTQ7jb .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tWTyMTQ7jb .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWTyMTQ7jb .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tLcXiOCkRV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tLcXiOCkRV .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tLcXiOCkRV .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tLcXiOCkRV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tLcXiOCkRV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tLcXiOCkRV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tLcXiOCkRV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tLcXiOCkRV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tLcXiOCkRV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tLcXiOCkRV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLcXiOCkRV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tKnjjL43Sg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tKnjjL43Sg .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tKnjjL43Sg .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tKnjjL43Sg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tKnjjL43Sg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tKnjjL43Sg .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tKnjjL43Sg .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tKnjjL43Sg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tKnjjL43Sg .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tKnjjL43Sg .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tKnjjL43Sg .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tK5K1I5xy8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tK5K1I5xy8 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tK5K1I5xy8 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tK5K1I5xy8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tK5K1I5xy8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tK5K1I5xy8 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tK5K1I5xy8 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tK5K1I5xy8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tK5K1I5xy8 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tK5K1I5xy8 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tK5K1I5xy8 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tIQ8z8XwzK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tIQ8z8XwzK .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tIQ8z8XwzK .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tIQ8z8XwzK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tIQ8z8XwzK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tIQ8z8XwzK .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tIQ8z8XwzK .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tIQ8z8XwzK .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tIQ8z8XwzK .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tIQ8z8XwzK .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIQ8z8XwzK .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tInJm5ktBU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tInJm5ktBU .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tInJm5ktBU .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tInJm5ktBU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tInJm5ktBU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tInJm5ktBU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tInJm5ktBU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tInJm5ktBU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tInJm5ktBU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tInJm5ktBU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tInJm5ktBU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tIbupztPnp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tIbupztPnp .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tIbupztPnp .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tIbupztPnp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tIbupztPnp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tIbupztPnp .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tIbupztPnp .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tIbupztPnp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tIbupztPnp .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tIbupztPnp .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIbupztPnp .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tI29hpKWGX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tI29hpKWGX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tI29hpKWGX .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tI29hpKWGX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tI29hpKWGX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tI29hpKWGX .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tI29hpKWGX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tI29hpKWGX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tI29hpKWGX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tI29hpKWGX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tI29hpKWGX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tGopXuz5yW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tGopXuz5yW .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tGopXuz5yW .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tGopXuz5yW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tGopXuz5yW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tGopXuz5yW .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tGopXuz5yW .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tGopXuz5yW .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tGopXuz5yW .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tGopXuz5yW .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGopXuz5yW .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tG1Ec6udof {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tG1Ec6udof .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tG1Ec6udof .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tG1Ec6udof .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tG1Ec6udof .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tG1Ec6udof .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tG1Ec6udof .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tG1Ec6udof .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tG1Ec6udof .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tG1Ec6udof .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tG1Ec6udof .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tFzxaIrdUy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tFzxaIrdUy .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tFzxaIrdUy .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tFzxaIrdUy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFzxaIrdUy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tFzxaIrdUy .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tFzxaIrdUy .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tFzxaIrdUy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tFzxaIrdUy .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tFzxaIrdUy .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFzxaIrdUy .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tEmkx30gvp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tEmkx30gvp .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tEmkx30gvp .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tEmkx30gvp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEmkx30gvp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tEmkx30gvp .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tEmkx30gvp .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tEmkx30gvp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tEmkx30gvp .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tEmkx30gvp .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEmkx30gvp .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tE8aTVgE9J {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tE8aTVgE9J .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tE8aTVgE9J .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tE8aTVgE9J .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tE8aTVgE9J .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tE8aTVgE9J .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tE8aTVgE9J .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tE8aTVgE9J .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE8aTVgE9J .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tE8aTVgE9J .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tE8aTVgE9J .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tE4CCtgeYn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tE4CCtgeYn .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tE4CCtgeYn .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tE4CCtgeYn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tE4CCtgeYn .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tE4CCtgeYn .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tE4CCtgeYn .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tE4CCtgeYn .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE4CCtgeYn .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tE4CCtgeYn .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tE4CCtgeYn .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDRGQ1bxmT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDRGQ1bxmT .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDRGQ1bxmT .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDRGQ1bxmT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDRGQ1bxmT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDRGQ1bxmT .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDRGQ1bxmT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDRGQ1bxmT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDRGQ1bxmT .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDRGQ1bxmT .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDRGQ1bxmT .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDzPOxt4ed {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tDzPOxt4ed .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDzPOxt4ed .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tDzPOxt4ed .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDzPOxt4ed .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tDzPOxt4ed .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tDzPOxt4ed .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tDzPOxt4ed .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tDzPOxt4ed .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDzPOxt4ed .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDzPOxt4ed .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCTdJ05QU1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCTdJ05QU1 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCTdJ05QU1 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tCTdJ05QU1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCTdJ05QU1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tCTdJ05QU1 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tCTdJ05QU1 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tCTdJ05QU1 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCTdJ05QU1 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCTdJ05QU1 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCTdJ05QU1 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tBFHIwrNXL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tBFHIwrNXL .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tBFHIwrNXL .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tBFHIwrNXL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBFHIwrNXL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tBFHIwrNXL .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tBFHIwrNXL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tBFHIwrNXL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tBFHIwrNXL .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tBFHIwrNXL .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tBFHIwrNXL .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-txP2hgeYL0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-txP2hgeYL0 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-txP2hgeYL0 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-txP2hgeYL0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txP2hgeYL0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-txP2hgeYL0 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-txP2hgeYL0 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-txP2hgeYL0 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txP2hgeYL0 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-txP2hgeYL0 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-txP2hgeYL0 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-txmxDDOnCa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-txmxDDOnCa .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-txmxDDOnCa .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-txmxDDOnCa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txmxDDOnCa .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-txmxDDOnCa .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-txmxDDOnCa .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-txmxDDOnCa .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txmxDDOnCa .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-txmxDDOnCa .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-txmxDDOnCa .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tuNtkO53HS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tuNtkO53HS .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tuNtkO53HS .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tuNtkO53HS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tuNtkO53HS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tuNtkO53HS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tuNtkO53HS .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tuNtkO53HS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tuNtkO53HS .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tuNtkO53HS .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tuNtkO53HS .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tusBtOcpLy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tusBtOcpLy .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tusBtOcpLy .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tusBtOcpLy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tusBtOcpLy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tusBtOcpLy .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tusBtOcpLy .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tusBtOcpLy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tusBtOcpLy .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tusBtOcpLy .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tusBtOcpLy .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tunngyN1pr {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tunngyN1pr .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tunngyN1pr .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tunngyN1pr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tunngyN1pr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tunngyN1pr .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tunngyN1pr .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tunngyN1pr .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tunngyN1pr .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tunngyN1pr .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tunngyN1pr .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tud49Iid4O {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tud49Iid4O .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tud49Iid4O .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tud49Iid4O .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tud49Iid4O .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tud49Iid4O .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tud49Iid4O .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tud49Iid4O .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tud49Iid4O .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tud49Iid4O .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tud49Iid4O .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ttF7mmH1cM {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ttF7mmH1cM .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ttF7mmH1cM .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-ttF7mmH1cM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttF7mmH1cM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ttF7mmH1cM .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-ttF7mmH1cM .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ttF7mmH1cM .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ttF7mmH1cM .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ttF7mmH1cM .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttF7mmH1cM .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS2Vx5NdfO {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-karolina-grabowska-5900160.jpg");
}
.cid-uS2Vx5NdfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2Vx5NdfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2Vx5NdfO .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSgjQPChi9 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-martabranco-33000309.jpg");
}
.cid-uSgjQPChi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSgjQPChi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSgjQPChi9 .mbr-section-subtitle {
  text-align: left;
}
.cid-uSgqS4I69n {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bitcoinglobal.jpg");
}
.cid-uSgqS4I69n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSgqS4I69n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSgqS4I69n .video-wrapper iframe {
  width: 100%;
}
.cid-uSgqS4I69n .mbr-section-title,
.cid-uSgqS4I69n .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uSgqS4I69n .text-wrapper {
    padding: 2rem;
  }
}
.cid-uSgqS4I69n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSgqS4I69n .mbr-text {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSkQHVVYf6 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcoinfree.jpg");
}
.cid-uSkQHVVYf6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkQHVVYf6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkQHVVYf6 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSJiF04g9g {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fotobanco.jpg");
}
.cid-uSJiF04g9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJiF04g9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSJiF04g9g .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTk1qhMDWj {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitfoton.jpg");
}
.cid-uTk1qhMDWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTk1qhMDWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTk1qhMDWj .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTyUmYBTVS {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/prestaruina2.jpg");
}
.cid-uTyUmYBTVS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTyUmYBTVS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTyUmYBTVS .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTWRTljHWE {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dinerotuyo2.jpg");
}
.cid-uTWRTljHWE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTWRTljHWE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTWRTljHWE .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUjyavval0 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/deuda2.jpg");
}
.cid-uUjyavval0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUjyavval0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUjyavval0 .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVm68CPdnN {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/estafabanca1.jpg");
}
.cid-uVm68CPdnN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVm68CPdnN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVm68CPdnN .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZkuGct71s {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitcity.jpg");
}
.cid-uZkuGct71s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZkuGct71s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZkuGct71s .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v04tyZEXBV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bancoagri.jpg");
}
.cid-v04tyZEXBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v04tyZEXBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v04tyZEXBV .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0CoAdHzr3 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/austin-distel-empz7yrzogw-unsplash-2000x1333.jpg");
}
.cid-v0CoAdHzr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0CoAdHzr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0CoAdHzr3 .mbr-section-subtitle {
  text-align: left;
}
.cid-v2vQMXe15p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/7contratos-1.jpg");
}
.cid-v2vQMXe15p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2vQMXe15p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2vQMXe15p ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v2vQMXe15p li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v2vQMXe15p ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v2vQMXe15p H3 {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0CudQFNNV {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/art1-1-1000x750.png");
}
.cid-v0CudQFNNV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0CudQFNNV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0CudQFNNV .mbr-section-subtitle {
  text-align: left;
}
.cid-v2zb0QF9rB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitdescentralzacion.jpg");
}
.cid-v2zb0QF9rB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zb0QF9rB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zb0QF9rB ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v2zb0QF9rB li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v2zb0QF9rB ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v2zb0QF9rB H3 {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0CSIL93dM {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/lucid-origin-una-ilustracin-detallada-de-una-burbuja-inmobilia-4.jpg");
}
.cid-v0CSIL93dM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0CSIL93dM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0CSIL93dM .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v10maL5xwn {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitmundo2.jpg");
}
.cid-v10maL5xwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v10maL5xwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v10maL5xwn .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1mFgK8T0R {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/myinvestor.jpg");
}
.cid-v1mFgK8T0R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1mFgK8T0R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1mFgK8T0R .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1NSOuK2Gw {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/interesbanca2.jpg");
}
.cid-v1NSOuK2Gw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1NSOuK2Gw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1NSOuK2Gw .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1WpgZ6gro {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bitsin.jpg");
}
.cid-v1WpgZ6gro .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1WpgZ6gro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1WpgZ6gro .mbr-section-subtitle {
  text-align: left;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sPfxYUKDSt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPfxYUKDSt nav.navbar {
  position: fixed;
}
.cid-sPfxYUKDSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPfxYUKDSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPfxYUKDSt .dropdown-item:hover,
.cid-sPfxYUKDSt .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sPfxYUKDSt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPfxYUKDSt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPfxYUKDSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPfxYUKDSt .nav-link {
  position: relative;
}
.cid-sPfxYUKDSt .container {
  display: flex;
  margin: auto;
}
.cid-sPfxYUKDSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown-menu,
.cid-sPfxYUKDSt .navbar.opened {
  background: #353535 !important;
}
.cid-sPfxYUKDSt .nav-item:focus,
.cid-sPfxYUKDSt .nav-link:focus {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPfxYUKDSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPfxYUKDSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPfxYUKDSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPfxYUKDSt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.opened {
  transition: all 0.3s;
}
.cid-sPfxYUKDSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPfxYUKDSt .navbar .navbar-logo img {
  width: auto;
}
.cid-sPfxYUKDSt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar.collapsed {
  justify-content: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPfxYUKDSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPfxYUKDSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPfxYUKDSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPfxYUKDSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPfxYUKDSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPfxYUKDSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPfxYUKDSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPfxYUKDSt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPfxYUKDSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPfxYUKDSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPfxYUKDSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPfxYUKDSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPfxYUKDSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPfxYUKDSt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPfxYUKDSt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPfxYUKDSt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPfxYUKDSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPfxYUKDSt .dropdown-item.active,
.cid-sPfxYUKDSt .dropdown-item:active {
  background-color: transparent;
}
.cid-sPfxYUKDSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPfxYUKDSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sPfxYUKDSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPfxYUKDSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPfxYUKDSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sPfxYUKDSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPfxYUKDSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPfxYUKDSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPfxYUKDSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPfxYUKDSt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPfxYUKDSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPfxYUKDSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPfxYUKDSt .navbar {
    height: 70px;
  }
  .cid-sPfxYUKDSt .navbar.opened {
    height: auto;
  }
  .cid-sPfxYUKDSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2qjeSThU0 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/metalespreciosos.png");
}
.cid-v2qjeSThU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2qjeSThU0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2qjeSThU0 .mbr-section-subtitle {
  text-align: left;
}
.cid-v2qovqsHCt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/inversion-plata-vs-oro.jpg");
}
.cid-v2qovqsHCt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2qovqsHCt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2qovqsHCt ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v2qovqsHCt li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v2qovqsHCt ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v2qovqsHCt H3 {
  color: #ffffff;
}
.cid-tyQDHuQimY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
