body {
  font-family: Barlow;
}
.display-1 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.32rem;
}
.display-2 {
  font-family: "Barlow", sans-serif;
  font-size: 3rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.7;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: "Barlow", sans-serif;
  font-size: 2.3rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.68rem;
}
.display-7 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.08rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.16rem;
    font-size: calc(
      2.4699999999999998rem + (5.2 - 2.4699999999999998) *
        ((100vw - 20rem) / (48 - 20))
    );
    line-height: calc(
      1.4 *
        (
          2.4699999999999998rem + (5.2 - 2.4699999999999998) *
            ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)))
    );
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc(1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(
      1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)))
    );
  }
  .display-5 {
    font-size: 1.84rem;
    font-size: calc(1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(
      1.4 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)))
    );
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #191f2d !important;
}
.bg-success {
  background-color: #ff9e66 !important;
}
.bg-info {
  background-color: #f9844f !important;
}
.bg-warning {
  background-color: #17268f !important;
}
.bg-danger {
  background-color: #92b0e6 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #191f2d !important;
  border-color: #191f2d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8198ff !important;
  border-color: #8198ff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #3459ff !important;
  border-color: #3459ff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3459ff !important;
  border-color: #3459ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #f9844f !important;
  border-color: #f9844f !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #f35208 !important;
  border-color: #f35208 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #f35208 !important;
  border-color: #f35208 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff9e66 !important;
  border-color: #ff9e66 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ff6e19 !important;
  border-color: #ff6e19 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff6e19 !important;
  border-color: #ff6e19 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #17268f !important;
  border-color: #17268f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #0c144d !important;
  border-color: #0c144d !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0c144d !important;
  border-color: #0c144d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #92b0e6 !important;
  border-color: #92b0e6 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #5483d8 !important;
  border-color: #5483d8 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5483d8 !important;
  border-color: #5483d8 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #191f2d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #191f2d !important;
  border-color: #191f2d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #1b45ff;
  color: #1b45ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #8198ff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8198ff !important;
  border-color: #8198ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #db4907;
  color: #db4907;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #f9844f;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f9844f !important;
  border-color: #f9844f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ff5d00;
  color: #ff5d00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #ff9e66;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9e66 !important;
  border-color: #ff9e66 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #090f37;
  color: #090f37;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #17268f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #17268f !important;
  border-color: #17268f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #3f74d3;
  color: #3f74d3;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #92b0e6;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #92b0e6 !important;
  border-color: #92b0e6 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #191f2d !important;
}
.text-secondary {
  color: #8198ff !important;
}
.text-success {
  color: #ff9e66 !important;
}
.text-info {
  color: #f9844f !important;
}
.text-warning {
  color: #17268f !important;
}
.text-danger {
  color: #92b0e6 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #1b45ff !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ff5d00 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #db4907 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #090f37 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #3f74d3 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f9844f;
}
.alert-warning {
  background-color: #17268f;
}
.alert-danger {
  background-color: #92b0e6;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #191f2d;
  border-color: #191f2d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #191f2d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cad1e1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #4458e1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 2.08rem;
}
blockquote {
  border-color: #191f2d;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #191f2d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #191f2d;
  border-bottom-color: #191f2d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker
  .xdsoft_timepicker
  .xdsoft_time_box
  > div
  > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #191f2d !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: #8198ff !important;
  box-shadow: none !important;
}
.sidebar-block .mbr-gallery-item .galleryItem .onsale {
  top: 0px;
}
.sidebar-block .mbr-gallery-item .galleryItem .sidebar_wraper {
  bottom: -35px;
  margin-left: 1rem;
}
.cid-uFoRrBkT9p .collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-uFoRrBkT9p .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #191f2d;
  background: none;
}
.cid-uFoRrBkT9p .navbar.opened {
  transition: all 0.3s;
  background: #191f2d !important;
  border-bottom: 1px solid #fff;
}
.cid-uFoRrBkT9p .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-uFoRrBkT9p .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFoRrBkT9p .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-uFoRrBkT9p .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uFoRrBkT9p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFoRrBkT9p .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-uFoRrBkT9p .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uFoRrBkT9p .navbar.collapsed.opened .navbar-collapse.show,
.cid-uFoRrBkT9p .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-uFoRrBkT9p .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-uFoRrBkT9p .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFoRrBkT9p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFoRrBkT9p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFoRrBkT9p
  .navbar.collapsed
  .dropdown-menu
  .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uFoRrBkT9p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFoRrBkT9p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uFoRrBkT9p .navbar {
    flex-wrap: nowrap;
  }
  .cid-uFoRrBkT9p .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uFoRrBkT9p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFoRrBkT9p .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-uFoRrBkT9p .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-uFoRrBkT9p .navbar.opened .navbar-collapse.show,
  .cid-uFoRrBkT9p .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-uFoRrBkT9p .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-uFoRrBkT9p .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFoRrBkT9p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFoRrBkT9p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFoRrBkT9p
    .navbar
    .dropdown-menu
    .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uFoRrBkT9p .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFoRrBkT9p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFoRrBkT9p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-uFoRrBkT9p .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-uFoRrBkT9p .navbar.navbar-short {
  background: #191f2d !important;
  min-height: 60px;
}
.cid-uFoRrBkT9p .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFoRrBkT9p .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFoRrBkT9p .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFoRrBkT9p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFoRrBkT9p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFoRrBkT9p .dropdown-item.active,
.cid-uFoRrBkT9p .dropdown-item:active {
  background-color: transparent;
}
.cid-uFoRrBkT9p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFoRrBkT9p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFoRrBkT9p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFoRrBkT9p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191f2d;
}
.cid-uFoRrBkT9p
  .navbar.navbar-expand-lg
  .dropdown
  .dropdown-menu
  .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFoRrBkT9p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFoRrBkT9p ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFoRrBkT9p .navbar-buttons {
  text-align: center;
}
.cid-uFoRrBkT9p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFoRrBkT9p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFoRrBkT9p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFoRrBkT9p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFoRrBkT9p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFoRrBkT9p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFoRrBkT9p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFoRrBkT9p nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFoRrBkT9p nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFoRrBkT9p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFoRrBkT9p .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uFoRrBkT9p a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-uFoRrBkT9p a.nav-link:focus {
  outline: none;
}
.cid-uFoRrBkT9p .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFoRrBkT9p .nav-link:hover,
.cid-uFoRrBkT9p .dropdown-item:hover {
  color: #ff9e66 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFoRrBkT9p .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-uFoRrBkT9p .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rIyXqSgtJT {
  padding-top: 225px;
  padding-bottom: 180px;
  background-image: url("/img/siniatu-fichaje-10-1772x1032.png");
}
.cid-rIyXqSgtJT .container-fluid {
  position: relative;
}
.cid-rIyXqSgtJT .page-title-content {
  width: 100%;
}
.cid-rIyXqSgtJT .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-rIyXqSgtJT .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-rIyXqSgtJT .page-title-content {
    text-align: center;
  }
}
.cid-rIyXqSgtJT .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-rIyXqSgtJT a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
.cid-rIyXqSgtJT a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-rIyXqSgtJT a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-rIyXqSgtJT a:hover:after,
.cid-rIyXqSgtJT a:focus:after {
  animation-duration: 1s;
  animation-name: slidein;
}
.cid-rIyXqSgtJT a:hover:before,
.cid-rIyXqSgtJT a:focus:before {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-name: slideout;
}
.cid-rIyXqSgtJT a.text-white:hover,
.cid-rIyXqSgtJT a.text-white:focus {
  color: #ffffff !important;
}
.cid-rIyXqSgtJT .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uFOFAJZL8l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFOFAJZL8l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFOFAJZL8l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFOFAJZL8l .content-wrapper {
  padding: 0 60px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uFOFAJZL8l .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uFOFAJZL8l .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 80px;
}
@media (max-width: 1199px) {
  .cid-uFOFAJZL8l .content-wrapper .content-wrap {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uFOFAJZL8l .content-wrapper .content-wrap {
    padding-right: 0;
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uFOFAJZL8l .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
}
@media (max-width: 992px) {
  .cid-uFOFAJZL8l .content-wrapper .content-wrap .text-wrapper {
    position: static;
  }
}
.cid-uFOFAJZL8l
  .content-wrapper
  .content-wrap
  .text-wrapper
  .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uFOFAJZL8l
  .content-wrapper
  .content-wrap
  .text-wrapper
  .mbr-section-title
  span {
  padding: 0 10px;
  border-radius: 8rem;
  background-color: #ffe66d;
}
@media (max-width: 992px) {
  .cid-uFOFAJZL8l
    .content-wrapper
    .content-wrap
    .text-wrapper
    .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFOFAJZL8l .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uFOFAJZL8l .content-wrapper .items-wrapper {
  padding-left: 80px;
  border-left: 3px solid #767676;
  width: 50%;
}
@media (max-width: 1199px) {
  .cid-uFOFAJZL8l .content-wrapper .items-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uFOFAJZL8l .content-wrapper .items-wrapper {
    border-left: none;
    border-top: 3px solid #767676;
    padding-left: 0;
    width: 100%;
  }
}
.cid-uFOFAJZL8l .content-wrapper .items-wrapper .item {
  padding: 32px 0;
}
@media (max-width: 992px) {
  .cid-uFOFAJZL8l .content-wrapper .items-wrapper .item {
    padding: 32px 0 0;
  }
}
.cid-uFOFAJZL8l
  .content-wrapper
  .items-wrapper
  .item
  .item-wrapper
  .card-box
  .item-title {
  margin-bottom: 16px;
}
.cid-uFOFAJZL8l
  .content-wrapper
  .items-wrapper
  .item
  .item-wrapper
  .card-box
  .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uFOFAJZL8l
    .content-wrapper
    .items-wrapper
    .item
    .item-wrapper
    .card-box
    .item-text {
    margin-bottom: 0;
  }
}
.cid-uFOFAJZL8l .mbr-section-title {
  color: #050f0f;
}
.cid-uFOFAJZL8l .mbr-text {
  color: #121212;
}
.cid-uFOFAJZL8l .item-title {
  color: #191f2d;
}
.cid-uFOFAJZL8l .item-text {
  color: #121212;
}
.cid-uFOFAJZL8l .mbr-section-title,
.cid-uFOFAJZL8l .icon-wrapper {
  color: #191f2d;
}
.cid-uFOPOmMDUB {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #191f2d;
}
.cid-uFOPOmMDUB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFOPOmMDUB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFOPOmMDUB .content-wrapper {
  justify-content: center;
}
.cid-uFOPOmMDUB .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFOPOmMDUB .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uFOPOmMDUB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uFOPOmMDUB .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFOPOmMDUB .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFOPOmMDUB .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin: 60px 0 30px;
}
@media (max-width: 992px) {
  .cid-uFOPOmMDUB .desc-wrapper .mbr-desc {
    width: 100%;
    margin: 48px 0 18px;
  }
}
.cid-uFOPOmMDUB .mbr-section-btn {
  margin-top: 20px;
}
.cid-uFOPOmMDUB .mbr-figure {
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
.cid-uFOPOmMDUB .mbr-figure:hover,
.cid-uFOPOmMDUB .mbr-figure:focus {
  background-color: #ffffff;
  border: 2px solid #ffffff;
}
.cid-uFOPOmMDUB .mbr-section-title {
  color: #ffffff;
}
.cid-uFOPOmMDUB .mbr-text,
.cid-uFOPOmMDUB .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFOPOmMDUB .mbr-desc,
.cid-uFOPOmMDUB .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-uFOPOmMDUB .mbr-section-title,
.cid-uFOPOmMDUB .mbr-section-btn {
  text-align: center;
}
.cid-uFV7LHoYuY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uFV7LHoYuY .mbr-iconfont {
  font-size: 50px;
  color: #ffffff;
}
.cid-uFV7LHoYuY .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 20px;
}
.cid-uFV7LHoYuY .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
  position: relative;
  padding-top: 25px;
}
.cid-uFV7LHoYuY .mbr-section-subtitle::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-uFV7LHoYuY .mbr-text {
  color: #ffffff;
  width: 100;
}
.cid-uFV7LHoYuY .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8198ff;
  margin-left: 0.6rem;
}
.cid-uFV7LHoYuY .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-uFV7LHoYuY .mbr-section-btn .btn {
  border-radius: 3px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .cid-uFV7LHoYuY .separator,
  .cid-uFV7LHoYuY .sep-holder,
  .cid-uFV7LHoYuY .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uFV7LHoYuY .buttons-wrap {
    flex-direction: column;
  }
}
.cid-uFV7LHoYuY .items {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 25px;
}
.cid-uFV7LHoYuY .items::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-uFV7LHoYuY .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
}
.cid-uFV7LHoYuY .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 0.2rem;
  margin: auto;
  color: #ffffff;
}
.cid-uFV7LHoYuY .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-uFV7LHoYuY .items .list-item:last-child .listico {
  display: none;
}
.cid-uFV7LHoYuY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV7LHoYuY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFV7LHoYuY .mbr-section-title,
.cid-uFV7LHoYuY .mbr-section-btn {
  color: #191f2d;
}
.cid-uFV5Q12gaw {
  padding-top: 0px;
  padding-bottom: 120px;
  background: #ffffff;
}
.cid-uFV5Q12gaw .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uFV5Q12gaw .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #191f2d;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uFV5Q12gaw .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFV5Q12gaw .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uFV5Q12gaw .main-title {
  margin-bottom: 36px;
  color: #191f2d;
}
.cid-uFV5Q12gaw .main-title.display-2 {
  line-height: 1.375;
}
.cid-uFV5Q12gaw .main-text {
  color: #121212;
}
.cid-uFV5Q12gaw .main-text.display-4 {
  line-height: 1.75;
}
.cid-uFV5Q12gaw .media-container-row {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04);
}
.cid-uFV5Q12gaw .plan {
  word-break: break-word;
  display: flex;
  flex-direction: column;
  height: fit-content;
  position: relative;
  max-width: 430px;
  padding-right: 0;
  padding-left: 0;
  transition: all 0.3s;
  border-radius: 4px;
}
.cid-uFV5Q12gaw .plan .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uFV5Q12gaw .plan .plan-header .plan-title {
  color: #000000;
}
.cid-uFV5Q12gaw .plan .plan-header .plan-price .price-figure {
  color: #404040;
}
.cid-uFV5Q12gaw .plan .plan-header .plan-price .price-figure .price-currency {
  display: inline-block;
}
.cid-uFV5Q12gaw
  .plan
  .plan-header
  .plan-price
  .price-figure
  .price-currency.display-7 {
  font-size: 18px;
  line-height: 1;
}
.cid-uFV5Q12gaw .plan .plan-header .plan-price .price-figure .price-value {
  display: inline-block;
}
.cid-uFV5Q12gaw
  .plan
  .plan-header
  .plan-price
  .price-figure
  .price-value.display-1 {
  font-size: 60px;
  line-height: 1;
}
.cid-uFV5Q12gaw .plan .plan-header .plan-price .price-figure .price-duration {
  display: inline-block;
}
.cid-uFV5Q12gaw
  .plan
  .plan-header
  .plan-price
  .price-figure
  .price-duration.display-4 {
  font-size: 16px;
  line-height: 1;
}
.cid-uFV5Q12gaw .plan .plan-body {
  padding-bottom: 2rem;
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uFV5Q12gaw .plan .plan-body .plan-list .list-group .list-group-item {
  font-weight: 400;
  font-size: 0.85em;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  color: #606060;
  padding-top: 5px;
  padding-bottom: 10px;
  background-color: #ffffff;
}
.cid-uFV5Q12gaw .plan .plan-body .plan-list .list-group .list-group-item span {
  font-weight: 600;
}
.cid-uFV5Q12gaw .plan .plan-body .plan-list .list-group.display-4 {
  line-height: 1;
}
.cid-uFV5Q12gaw .plan .plan-body .mbr-section-btn {
  padding-top: 45px;
  text-align: center;
}
.cid-uFV5Q12gaw .plan .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-uFV5Q12gaw .plan .plan-body .mbr-section-btn .btn {
  padding: 18px 26px 16px;
}
.cid-uFV5Q12gaw .plan .plan-body .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uFV5Q12gaw .plan .plan-body .mbr-section-btn .btn-primary:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2) !important;
}
@media (max-width: 550px) {
  .cid-uFV5Q12gaw .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uFV5Q12gaw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV5Q12gaw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFV5Q12gaw .plan .plan-header .plan-price .price-figure SPAN {
  color: #191f2d;
  text-align: center;
}
.cid-uFV5Q12gaw .plan .plan-header .plan-title {
  color: #191f2d;
  text-align: center;
}
.cid-uFV5Q12gaw .plan .plan-body .plan-list .list-group .list-group-item,
.cid-uFV5Q12gaw .plan .plan-body .mbr-section-btn {
  color: #121212;
  text-align: center;
}
.cid-uFV6BT7jdx {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("/img/siniatu-fichaje-1-1705x1007.png");
}
.cid-uFV6BT7jdx .container-fluid {
  position: relative;
}
.cid-uFV6BT7jdx .page-title-content {
  width: 100%;
}
.cid-uFV6BT7jdx .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uFV6BT7jdx .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uFV6BT7jdx .page-title-content {
    text-align: center;
  }
}
.cid-uFV6BT7jdx .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uFV6BT7jdx a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-uFV6BT7jdx a:not(:first-child) {
  margin-left: 20px;
}
.cid-uFV6BT7jdx a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uFV6BT7jdx a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uFV6BT7jdx a:hover:after,
.cid-uFV6BT7jdx a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-uFV6BT7jdx a:hover:before,
.cid-uFV6BT7jdx a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-uFV6BT7jdx a.text-white:hover,
.cid-uFV6BT7jdx a.text-white:focus {
  color: #ffffff !important;
}
.cid-uFV6BT7jdx .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uFV6BT7jdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV6BT7jdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFOToWHWH5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #191f2d;
}
.cid-uFOToWHWH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFOToWHWH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFOToWHWH5 .row {
  justify-content: center;
}
.cid-uFOToWHWH5 .card {
  justify-content: center;
}
.cid-uFOToWHWH5 .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFOToWHWH5 .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uFOToWHWH5 .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uFOToWHWH5 .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cid-uFOToWHWH5 .nav-wrapper .list .item-wrap:hover,
.cid-uFOToWHWH5 .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFOToWHWH5 .list,
.cid-uFOToWHWH5 .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFOToWHWH5 .list,
.cid-uFOToWHWH5 .item-wrap,
.cid-uFOToWHWH5 .nav-wrapper {
  color: #ffffff;
}
.cid-uFOWx9slQL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uFOWx9slQL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFOWx9slQL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uFOWx9slQL h4 {
    margin-top: -30px;
  }
}
.cid-uFOWx9slQL .btn-secondary {
  color: #191f2d !important;
}
.cid-uFOWx9slQL .mbr-section-btn {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .cid-uFOWx9slQL .mbr-section-btn {
    margin-top: 2rem;
  }
}
.cid-uFOWx9slQL .mbr-section-title {
  color: #625673;
  text-align: center;
}
.cid-uFOWx9slQL .mbr-section-subtitle {
  color: #dfcefd;
  text-align: center;
}
.cid-uFOWx9slQL .btn {
  padding: 2rem 3rem;
  color: #8198ff;
}
.cid-uFOWx9slQL .btn:hover,
.cid-uFOWx9slQL .btn:focus {
  background: #8198ff !important;
  color: #191f2d !important;
}
.cid-uFUT0cigdU .collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-uFUT0cigdU .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #191f2d;
  background: none;
}
.cid-uFUT0cigdU .navbar.opened {
  transition: all 0.3s;
  background: #191f2d !important;
  border-bottom: 1px solid #fff;
}
.cid-uFUT0cigdU .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-uFUT0cigdU .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFUT0cigdU .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-uFUT0cigdU .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uFUT0cigdU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFUT0cigdU .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-uFUT0cigdU .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uFUT0cigdU .navbar.collapsed.opened .navbar-collapse.show,
.cid-uFUT0cigdU .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-uFUT0cigdU .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-uFUT0cigdU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFUT0cigdU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFUT0cigdU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFUT0cigdU
  .navbar.collapsed
  .dropdown-menu
  .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uFUT0cigdU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFUT0cigdU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uFUT0cigdU .navbar {
    flex-wrap: nowrap;
  }
  .cid-uFUT0cigdU .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uFUT0cigdU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFUT0cigdU .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-uFUT0cigdU .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-uFUT0cigdU .navbar.opened .navbar-collapse.show,
  .cid-uFUT0cigdU .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-uFUT0cigdU .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-uFUT0cigdU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFUT0cigdU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFUT0cigdU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFUT0cigdU
    .navbar
    .dropdown-menu
    .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uFUT0cigdU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFUT0cigdU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFUT0cigdU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-uFUT0cigdU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-uFUT0cigdU .navbar.navbar-short {
  background: #191f2d !important;
  min-height: 60px;
}
.cid-uFUT0cigdU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFUT0cigdU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFUT0cigdU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFUT0cigdU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFUT0cigdU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFUT0cigdU .dropdown-item.active,
.cid-uFUT0cigdU .dropdown-item:active {
  background-color: transparent;
}
.cid-uFUT0cigdU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFUT0cigdU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFUT0cigdU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFUT0cigdU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191f2d;
}
.cid-uFUT0cigdU
  .navbar.navbar-expand-lg
  .dropdown
  .dropdown-menu
  .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFUT0cigdU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUT0cigdU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFUT0cigdU .navbar-buttons {
  text-align: center;
}
.cid-uFUT0cigdU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFUT0cigdU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFUT0cigdU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFUT0cigdU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUT0cigdU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUT0cigdU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFUT0cigdU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUT0cigdU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFUT0cigdU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFUT0cigdU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUT0cigdU .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uFUT0cigdU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-uFUT0cigdU a.nav-link:focus {
  outline: none;
}
.cid-uFUT0cigdU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFUT0cigdU .nav-link:hover,
.cid-uFUT0cigdU .dropdown-item:hover {
  color: #ff9e66 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFUT0cigdU .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-uFUT0cigdU .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uFUT0cUdns {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #191f2d;
}
.cid-uFUT0cUdns .container-fluid {
  position: relative;
}
.cid-uFUT0cUdns .page-title-content {
  width: 100%;
}
.cid-uFUT0cUdns .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uFUT0cUdns .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uFUT0cUdns .page-title-content {
    text-align: center;
  }
}
.cid-uFUT0cUdns .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uFUT0cUdns a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
.cid-uFUT0cUdns a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uFUT0cUdns a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uFUT0cUdns a:hover:after,
.cid-uFUT0cUdns a:focus:after {
  animation-duration: 1s;
  animation-name: slidein;
}
.cid-uFUT0cUdns a:hover:before,
.cid-uFUT0cUdns a:focus:before {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-name: slideout;
}
.cid-uFUT0cUdns a.text-white:hover,
.cid-uFUT0cUdns a.text-white:focus {
  color: #ffffff !important;
}
.cid-uFUT0cUdns .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uFV1o3bFF9 {
  padding-top: 90px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-uFV1o3bFF9 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uFV1o3bFF9 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #191f2d;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uFV1o3bFF9 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFV1o3bFF9 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uFV1o3bFF9 .main-title {
  margin-bottom: 36px;
  color: #191f2d;
}
.cid-uFV1o3bFF9 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uFV1o3bFF9 .main-text {
  color: #121212;
}
.cid-uFV1o3bFF9 .main-text.display-4 {
  line-height: 1.75;
}
.cid-uFV1o3bFF9 .media-container-row {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04);
}
.cid-uFV1o3bFF9 .plan {
  word-break: break-word;
  display: flex;
  flex-direction: column;
  height: fit-content;
  position: relative;
  max-width: 430px;
  padding-right: 0;
  padding-left: 0;
  transition: all 0.3s;
  border-radius: 4px;
}
.cid-uFV1o3bFF9 .plan .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uFV1o3bFF9 .plan .plan-header .plan-title {
  color: #000000;
}
.cid-uFV1o3bFF9 .plan .plan-header .plan-price .price-figure {
  color: #404040;
}
.cid-uFV1o3bFF9 .plan .plan-header .plan-price .price-figure .price-currency {
  display: inline-block;
}
.cid-uFV1o3bFF9
  .plan
  .plan-header
  .plan-price
  .price-figure
  .price-currency.display-7 {
  font-size: 18px;
  line-height: 1;
}
.cid-uFV1o3bFF9 .plan .plan-header .plan-price .price-figure .price-value {
  display: inline-block;
}
.cid-uFV1o3bFF9
  .plan
  .plan-header
  .plan-price
  .price-figure
  .price-value.display-1 {
  font-size: 60px;
  line-height: 1;
}
.cid-uFV1o3bFF9 .plan .plan-header .plan-price .price-figure .price-duration {
  display: inline-block;
}
.cid-uFV1o3bFF9
  .plan
  .plan-header
  .plan-price
  .price-figure
  .price-duration.display-4 {
  font-size: 16px;
  line-height: 1;
}
.cid-uFV1o3bFF9 .plan .plan-body {
  padding-bottom: 2rem;
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uFV1o3bFF9 .plan .plan-body .plan-list .list-group .list-group-item {
  font-weight: 400;
  font-size: 0.85em;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  color: #606060;
  padding-top: 5px;
  padding-bottom: 10px;
  background-color: #ffffff;
}
.cid-uFV1o3bFF9 .plan .plan-body .plan-list .list-group .list-group-item span {
  font-weight: 600;
}
.cid-uFV1o3bFF9 .plan .plan-body .plan-list .list-group.display-4 {
  line-height: 1;
}
.cid-uFV1o3bFF9 .plan .plan-body .mbr-section-btn {
  padding-top: 45px;
  text-align: center;
}
.cid-uFV1o3bFF9 .plan .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-uFV1o3bFF9 .plan .plan-body .mbr-section-btn .btn {
  padding: 18px 26px 16px;
}
.cid-uFV1o3bFF9 .plan .plan-body .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uFV1o3bFF9 .plan .plan-body .mbr-section-btn .btn-primary:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2) !important;
}
@media (max-width: 550px) {
  .cid-uFV1o3bFF9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uFV1o3bFF9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV1o3bFF9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFV1o3bFF9 .plan .plan-header .plan-price .price-figure SPAN {
  color: #191f2d;
  text-align: center;
}
.cid-uFV1o3bFF9 .plan .plan-header .plan-title {
  color: #191f2d;
  text-align: center;
}
.cid-uFV1o3bFF9 .plan .plan-body .plan-list .list-group .list-group-item,
.cid-uFV1o3bFF9 .plan .plan-body .mbr-section-btn {
  color: #121212;
  text-align: center;
}
.cid-uFUXqRqwKu {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #191f2d;
}
.cid-uFUXqRqwKu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUXqRqwKu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUXqRqwKu .content-wrapper {
  justify-content: center;
}
.cid-uFUXqRqwKu .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFUXqRqwKu .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uFUXqRqwKu .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uFUXqRqwKu .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUXqRqwKu .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFUXqRqwKu .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin: 60px 0 30px;
}
@media (max-width: 992px) {
  .cid-uFUXqRqwKu .desc-wrapper .mbr-desc {
    width: 100%;
    margin: 48px 0 18px;
  }
}
.cid-uFUXqRqwKu .mbr-section-btn {
  margin-top: 20px;
}
.cid-uFUXqRqwKu .mbr-figure {
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
.cid-uFUXqRqwKu .mbr-figure:hover,
.cid-uFUXqRqwKu .mbr-figure:focus {
  background-color: #ffffff;
  border: 2px solid #ffffff;
}
.cid-uFUXqRqwKu .mbr-section-title {
  color: #ffffff;
}
.cid-uFUXqRqwKu .mbr-text,
.cid-uFUXqRqwKu .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFUXqRqwKu .mbr-desc,
.cid-uFUXqRqwKu .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-uFUXqRqwKu .mbr-section-title,
.cid-uFUXqRqwKu .mbr-section-btn {
  text-align: center;
}
.cid-uFV8vL3WGJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("/img/siniatu-fichaje-1-1705x1007.png");
}
.cid-uFV8vL3WGJ .container-fluid {
  position: relative;
}
.cid-uFV8vL3WGJ .page-title-content {
  width: 100%;
}
.cid-uFV8vL3WGJ .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uFV8vL3WGJ .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uFV8vL3WGJ .page-title-content {
    text-align: center;
  }
}
.cid-uFV8vL3WGJ .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uFV8vL3WGJ a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-uFV8vL3WGJ a:not(:first-child) {
  margin-left: 20px;
}
.cid-uFV8vL3WGJ a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uFV8vL3WGJ a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uFV8vL3WGJ a:hover:after,
.cid-uFV8vL3WGJ a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-uFV8vL3WGJ a:hover:before,
.cid-uFV8vL3WGJ a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-uFV8vL3WGJ a.text-white:hover,
.cid-uFV8vL3WGJ a.text-white:focus {
  color: #ffffff !important;
}
.cid-uFV8vL3WGJ .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uFV8vL3WGJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV8vL3WGJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUT0e0NdD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #191f2d;
}
.cid-uFUT0e0NdD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUT0e0NdD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUT0e0NdD .row {
  justify-content: center;
}
.cid-uFUT0e0NdD .card {
  justify-content: center;
}
.cid-uFUT0e0NdD .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uFUT0e0NdD .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uFUT0e0NdD .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uFUT0e0NdD .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cid-uFUT0e0NdD .nav-wrapper .list .item-wrap:hover,
.cid-uFUT0e0NdD .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFUT0e0NdD .list,
.cid-uFUT0e0NdD .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFUT0e0NdD .list,
.cid-uFUT0e0NdD .item-wrap,
.cid-uFUT0e0NdD .nav-wrapper {
  color: #ffffff;
}
.cid-uFUT0eh0vL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uFUT0eh0vL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUT0eh0vL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uFUT0eh0vL h4 {
    margin-top: -30px;
  }
}
.cid-uFUT0eh0vL .btn-secondary {
  color: #191f2d !important;
}
.cid-uFUT0eh0vL .mbr-section-btn {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .cid-uFUT0eh0vL .mbr-section-btn {
    margin-top: 2rem;
  }
}
.cid-uFUT0eh0vL .mbr-section-title {
  color: #625673;
  text-align: center;
}
.cid-uFUT0eh0vL .mbr-section-subtitle {
  color: #dfcefd;
  text-align: center;
}
.cid-uFUT0eh0vL .btn {
  padding: 2rem 3rem;
  color: #8198ff;
}
.cid-uFUT0eh0vL .btn:hover,
.cid-uFUT0eh0vL .btn:focus {
  background: #8198ff !important;
  color: #191f2d !important;
}
.cid-uGgXly6BMP .collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-uGgXly6BMP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #191f2d;
  background: none;
}
.cid-uGgXly6BMP .navbar.opened {
  transition: all 0.3s;
  background: #191f2d !important;
  border-bottom: 1px solid #fff;
}
.cid-uGgXly6BMP .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-uGgXly6BMP .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGgXly6BMP .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-uGgXly6BMP .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uGgXly6BMP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uGgXly6BMP .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-uGgXly6BMP .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uGgXly6BMP .navbar.collapsed.opened .navbar-collapse.show,
.cid-uGgXly6BMP .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-uGgXly6BMP .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-uGgXly6BMP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uGgXly6BMP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGgXly6BMP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGgXly6BMP
  .navbar.collapsed
  .dropdown-menu
  .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uGgXly6BMP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGgXly6BMP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uGgXly6BMP .navbar {
    flex-wrap: nowrap;
  }
  .cid-uGgXly6BMP .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uGgXly6BMP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGgXly6BMP .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-uGgXly6BMP .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-uGgXly6BMP .navbar.opened .navbar-collapse.show,
  .cid-uGgXly6BMP .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-uGgXly6BMP .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-uGgXly6BMP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uGgXly6BMP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGgXly6BMP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGgXly6BMP
    .navbar
    .dropdown-menu
    .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uGgXly6BMP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uGgXly6BMP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGgXly6BMP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-uGgXly6BMP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-uGgXly6BMP .navbar.navbar-short {
  background: #191f2d !important;
  min-height: 60px;
}
.cid-uGgXly6BMP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uGgXly6BMP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uGgXly6BMP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGgXly6BMP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGgXly6BMP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGgXly6BMP .dropdown-item.active,
.cid-uGgXly6BMP .dropdown-item:active {
  background-color: transparent;
}
.cid-uGgXly6BMP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGgXly6BMP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGgXly6BMP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGgXly6BMP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191f2d;
}
.cid-uGgXly6BMP
  .navbar.navbar-expand-lg
  .dropdown
  .dropdown-menu
  .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGgXly6BMP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGgXly6BMP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGgXly6BMP .navbar-buttons {
  text-align: center;
}
.cid-uGgXly6BMP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGgXly6BMP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGgXly6BMP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGgXly6BMP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGgXly6BMP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGgXly6BMP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGgXly6BMP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGgXly6BMP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGgXly6BMP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGgXly6BMP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGgXly6BMP .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uGgXly6BMP a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-uGgXly6BMP a.nav-link:focus {
  outline: none;
}
.cid-uGgXly6BMP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGgXly6BMP .nav-link:hover,
.cid-uGgXly6BMP .dropdown-item:hover {
  color: #ff9e66 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGgXly6BMP .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-uGgXly6BMP .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uGgXlytCu2 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #191f2d;
}
.cid-uGgXlytCu2 .container-fluid {
  position: relative;
}
.cid-uGgXlytCu2 .page-title-content {
  width: 100%;
}
.cid-uGgXlytCu2 .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uGgXlytCu2 .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uGgXlytCu2 .page-title-content {
    text-align: center;
  }
}
.cid-uGgXlytCu2 .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uGgXlytCu2 a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
.cid-uGgXlytCu2 a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uGgXlytCu2 a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uGgXlytCu2 a:hover:after,
.cid-uGgXlytCu2 a:focus:after {
  animation-duration: 1s;
  animation-name: slidein;
}
.cid-uGgXlytCu2 a:hover:before,
.cid-uGgXlytCu2 a:focus:before {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-name: slideout;
}
.cid-uGgXlytCu2 a.text-white:hover,
.cid-uGgXlytCu2 a.text-white:focus {
  color: #ffffff !important;
}
.cid-uGgXlytCu2 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uGgYNoeFq0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGgYNoeFq0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGgYNoeFq0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGgYNoeFq0 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uGgYNoeFq0 .container {
    padding: 0 14px;
  }
}
.cid-uGgYNoeFq0 .row {
  justify-content: center;
}
.cid-uGgYNoeFq0 .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uGgYNoeFq0 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uGgYNoeFq0 .content-wrapper .mbr-text_1 {
  margin-bottom: 32px;
}
.cid-uGgYNoeFq0 .content-wrapper .list-wrapper {
  margin-bottom: 32px;
}
.cid-uGgYNoeFq0 .content-wrapper .list-wrapper .mbr-list-title {
  margin-bottom: 16px;
}
.cid-uGgYNoeFq0 .content-wrapper .list-wrapper .list {
  margin: 0;
  list-style-type: none;
  padding-left: 22px;
}
.cid-uGgYNoeFq0 .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 12px;
  position: relative;
}
.cid-uGgYNoeFq0 .content-wrapper .list-wrapper .list .item-wrap::before {
  content: "✓";
  position: absolute;
  top: 2px;
  font-size: 18px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fb7522;
  margin-left: -25px;
}
.cid-uGgYNoeFq0 .content-wrapper .mbr-text_2 {
  margin-bottom: 0;
}
.cid-uGgYNoeFq0 .mbr-section-title {
  color: #191f2d;
  text-align: left;
}
.cid-uGgYNoeFq0 .mbr-text_1 {
  color: #121212;
}
.cid-uGgYNoeFq0 .list {
  color: #01004c;
}
.cid-uGgYNoeFq0 .mbr-text_2 {
  color: #121212;
}
.cid-uGgYNoeFq0 .list,
.cid-uGgYNoeFq0 .item-wrap {
  color: #121212;
}
.cid-uGgYNoeFq0 .mbr-list-title {
  color: #121212;
}
.cid-uGgYQd6Su8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #191f2d;
  flex-direction: column;
  justify-content: center;
}
.cid-uGgYQd6Su8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGgYQd6Su8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGgYQd6Su8 .container {
    padding: 0 16px;
  }
}
.cid-uGgYQd6Su8 .row {
  justify-content: center;
}
.cid-uGgYQd6Su8 .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uGgYQd6Su8 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #8198ff !important;
  color: #f9844f !important;
  border-color: #8198ff !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #191f2d !important;
  color: #f9844f !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #8198ff !important;
  color: #f9844f !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ff9e66 !important;
  color: #f9844f !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f9844f !important;
  color: #8198ff !important;
  border-color: #f9844f !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #17268f !important;
  color: #f9844f !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #92b0e6 !important;
  color: #f9844f !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-uGgYQd6Su8 .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-uGgYQd6Su8 .mbr-desc {
  color: #706cff;
}
.cid-uGgYQd6Su8 .mbr-section-title {
  color: #000000;
}
.cid-uGgYQd6Su8 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uGgYQd6Su8 .mbr-section-btn {
  text-align: center;
}
.cid-uGgYQd6Su8 .mbr-section-title,
.cid-uGgYQd6Su8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uGh1GMX3EB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGh1GMX3EB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGh1GMX3EB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGh1GMX3EB .container {
    padding: 0 16px;
  }
}
.cid-uGh1GMX3EB .row {
  justify-content: center;
}
.cid-uGh1GMX3EB .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uGh1GMX3EB .title-wrapper .mbr-section-title {
    margin-bottom: 36px;
  }
}
.cid-uGh1GMX3EB .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uGh1GMX3EB .mbr-section-title {
  color: #f0f0f0;
}
.cid-uGh1GMX3EB .mbr-text {
  color: #121212;
}
.cid-uGh1GMX3EB .mbr-section-title,
.cid-uGh1GMX3EB .mbr-section-btn {
  color: #191f2d;
}
.cid-uGgXlz9gxn {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #191f2d;
}
.cid-uGgXlz9gxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGgXlz9gxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGgXlz9gxn .content-wrapper {
  justify-content: center;
}
.cid-uGgXlz9gxn .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uGgXlz9gxn .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uGgXlz9gxn .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uGgXlz9gxn .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGgXlz9gxn .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uGgXlz9gxn .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin: 60px 0 30px;
}
@media (max-width: 992px) {
  .cid-uGgXlz9gxn .desc-wrapper .mbr-desc {
    width: 100%;
    margin: 48px 0 18px;
  }
}
.cid-uGgXlz9gxn .mbr-section-btn {
  margin-top: 20px;
}
.cid-uGgXlz9gxn .mbr-figure {
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
.cid-uGgXlz9gxn .mbr-figure:hover,
.cid-uGgXlz9gxn .mbr-figure:focus {
  background-color: #ffffff;
  border: 2px solid #ffffff;
}
.cid-uGgXlz9gxn .mbr-section-title {
  color: #ffffff;
}
.cid-uGgXlz9gxn .mbr-text,
.cid-uGgXlz9gxn .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uGgXlz9gxn .mbr-desc,
.cid-uGgXlz9gxn .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-uGgXlz9gxn .mbr-section-title,
.cid-uGgXlz9gxn .mbr-section-btn {
  text-align: center;
}
.cid-uGgXlzp4t6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("/img/siniatu-fichaje-1-1705x1007.png");
}
.cid-uGgXlzp4t6 .container-fluid {
  position: relative;
}
.cid-uGgXlzp4t6 .page-title-content {
  width: 100%;
}
.cid-uGgXlzp4t6 .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uGgXlzp4t6 .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uGgXlzp4t6 .page-title-content {
    text-align: center;
  }
}
.cid-uGgXlzp4t6 .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uGgXlzp4t6 a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-uGgXlzp4t6 a:not(:first-child) {
  margin-left: 20px;
}
.cid-uGgXlzp4t6 a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uGgXlzp4t6 a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uGgXlzp4t6 a:hover:after,
.cid-uGgXlzp4t6 a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-uGgXlzp4t6 a:hover:before,
.cid-uGgXlzp4t6 a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-uGgXlzp4t6 a.text-white:hover,
.cid-uGgXlzp4t6 a.text-white:focus {
  color: #ffffff !important;
}
.cid-uGgXlzp4t6 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uGgXlzp4t6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGgXlzp4t6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGgXlzMBrC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #191f2d;
}
.cid-uGgXlzMBrC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGgXlzMBrC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGgXlzMBrC .row {
  justify-content: center;
}
.cid-uGgXlzMBrC .card {
  justify-content: center;
}
.cid-uGgXlzMBrC .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGgXlzMBrC .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uGgXlzMBrC .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGgXlzMBrC .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cid-uGgXlzMBrC .nav-wrapper .list .item-wrap:hover,
.cid-uGgXlzMBrC .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uGgXlzMBrC .list,
.cid-uGgXlzMBrC .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uGgXlzMBrC .list,
.cid-uGgXlzMBrC .item-wrap,
.cid-uGgXlzMBrC .nav-wrapper {
  color: #ffffff;
}
.cid-uGgXlA1F2c {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGgXlA1F2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGgXlA1F2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uGgXlA1F2c h4 {
    margin-top: -30px;
  }
}
.cid-uGgXlA1F2c .btn-secondary {
  color: #191f2d !important;
}
.cid-uGgXlA1F2c .mbr-section-btn {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .cid-uGgXlA1F2c .mbr-section-btn {
    margin-top: 2rem;
  }
}
.cid-uGgXlA1F2c .mbr-section-title {
  color: #625673;
  text-align: center;
}
.cid-uGgXlA1F2c .mbr-section-subtitle {
  color: #dfcefd;
  text-align: center;
}
.cid-uGgXlA1F2c .btn {
  padding: 2rem 3rem;
  color: #8198ff;
}
.cid-uGgXlA1F2c .btn:hover,
.cid-uGgXlA1F2c .btn:focus {
  background: #8198ff !important;
  color: #191f2d !important;
}
.cid-uH2EQRyuSy .collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-uH2EQRyuSy .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #191f2d;
  background: none;
}
.cid-uH2EQRyuSy .navbar.opened {
  transition: all 0.3s;
  background: #191f2d !important;
  border-bottom: 1px solid #fff;
}
.cid-uH2EQRyuSy .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-uH2EQRyuSy .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH2EQRyuSy .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-uH2EQRyuSy .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uH2EQRyuSy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uH2EQRyuSy .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-uH2EQRyuSy .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uH2EQRyuSy .navbar.collapsed.opened .navbar-collapse.show,
.cid-uH2EQRyuSy .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-uH2EQRyuSy .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-uH2EQRyuSy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uH2EQRyuSy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH2EQRyuSy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH2EQRyuSy
  .navbar.collapsed
  .dropdown-menu
  .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uH2EQRyuSy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH2EQRyuSy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uH2EQRyuSy .navbar {
    flex-wrap: nowrap;
  }
  .cid-uH2EQRyuSy .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uH2EQRyuSy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH2EQRyuSy .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-uH2EQRyuSy .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-uH2EQRyuSy .navbar.opened .navbar-collapse.show,
  .cid-uH2EQRyuSy .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-uH2EQRyuSy .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-uH2EQRyuSy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uH2EQRyuSy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH2EQRyuSy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH2EQRyuSy
    .navbar
    .dropdown-menu
    .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uH2EQRyuSy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uH2EQRyuSy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH2EQRyuSy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-uH2EQRyuSy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-uH2EQRyuSy .navbar.navbar-short {
  background: #191f2d !important;
  min-height: 60px;
}
.cid-uH2EQRyuSy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uH2EQRyuSy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uH2EQRyuSy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uH2EQRyuSy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH2EQRyuSy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH2EQRyuSy .dropdown-item.active,
.cid-uH2EQRyuSy .dropdown-item:active {
  background-color: transparent;
}
.cid-uH2EQRyuSy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH2EQRyuSy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH2EQRyuSy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH2EQRyuSy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191f2d;
}
.cid-uH2EQRyuSy
  .navbar.navbar-expand-lg
  .dropdown
  .dropdown-menu
  .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH2EQRyuSy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH2EQRyuSy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uH2EQRyuSy .navbar-buttons {
  text-align: center;
}
.cid-uH2EQRyuSy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uH2EQRyuSy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uH2EQRyuSy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH2EQRyuSy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH2EQRyuSy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH2EQRyuSy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH2EQRyuSy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH2EQRyuSy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH2EQRyuSy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH2EQRyuSy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH2EQRyuSy .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uH2EQRyuSy a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-uH2EQRyuSy a.nav-link:focus {
  outline: none;
}
.cid-uH2EQRyuSy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH2EQRyuSy .nav-link:hover,
.cid-uH2EQRyuSy .dropdown-item:hover {
  color: #ff9e66 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uH2EQRyuSy .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-uH2EQRyuSy .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uH2EQSeNdM {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #191f2d;
}
.cid-uH2EQSeNdM .container-fluid {
  position: relative;
}
.cid-uH2EQSeNdM .page-title-content {
  width: 100%;
}
.cid-uH2EQSeNdM .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uH2EQSeNdM .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uH2EQSeNdM .page-title-content {
    text-align: center;
  }
}
.cid-uH2EQSeNdM .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uH2EQSeNdM a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
.cid-uH2EQSeNdM a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uH2EQSeNdM a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uH2EQSeNdM a:hover:after,
.cid-uH2EQSeNdM a:focus:after {
  animation-duration: 1s;
  animation-name: slidein;
}
.cid-uH2EQSeNdM a:hover:before,
.cid-uH2EQSeNdM a:focus:before {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-name: slideout;
}
.cid-uH2EQSeNdM a.text-white:hover,
.cid-uH2EQSeNdM a.text-white:focus {
  color: #ffffff !important;
}
.cid-uH2EQSeNdM .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uH2EQSeNdM .text {
  text-align: left;
}
.cid-uH2FxzO24z {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uH2FxzO24z .mbr-section-title {
  margin-bottom: 18px;
  color: #202020;
}
.cid-uH2FxzO24z .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-uH2FxzO24z .card_box {
  margin-bottom: 65px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uH2FxzO24z .card_info {
  margin-bottom: 12px;
}
.cid-uH2FxzO24z .card_date {
  color: #555555;
}
.cid-uH2FxzO24z .card_title {
  line-height: 1.1em;
  margin-bottom: 18px;
  color: #202020;
}
.cid-uH2FxzO24z .card_text {
  margin-top: 4px;
}
.cid-uH2FxzO24z .item-img {
  margin-bottom: 30px;
}
.cid-uH2FxzO24z .item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.cid-uH2FxzO24z .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2em;
}
.cid-uH2FxzO24z .linkBtn a:after,
.cid-uH2FxzO24z .linkBtn a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uH2FxzO24z .linkBtn a:before {
  left: 0;
}
.cid-uH2FxzO24z .linkBtn a:after {
  left: -100%;
  transition-delay: 0.3s;
}
.cid-uH2FxzO24z .linkBtn a:hover:before,
.cid-uH2FxzO24z .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uH2EQSZqdm {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("/img/siniatu-fichaje-1-1705x1007.png");
}
.cid-uH2EQSZqdm .container-fluid {
  position: relative;
}
.cid-uH2EQSZqdm .page-title-content {
  width: 100%;
}
.cid-uH2EQSZqdm .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uH2EQSZqdm .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uH2EQSZqdm .page-title-content {
    text-align: center;
  }
}
.cid-uH2EQSZqdm .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uH2EQSZqdm a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-uH2EQSZqdm a:not(:first-child) {
  margin-left: 20px;
}
.cid-uH2EQSZqdm a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uH2EQSZqdm a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uH2EQSZqdm a:hover:after,
.cid-uH2EQSZqdm a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-uH2EQSZqdm a:hover:before,
.cid-uH2EQSZqdm a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-uH2EQSZqdm a.text-white:hover,
.cid-uH2EQSZqdm a.text-white:focus {
  color: #ffffff !important;
}
.cid-uH2EQSZqdm .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uH2EQSZqdm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2EQSZqdm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH2EQTbhpn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #191f2d;
}
.cid-uH2EQTbhpn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2EQTbhpn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH2EQTbhpn .row {
  justify-content: center;
}
.cid-uH2EQTbhpn .card {
  justify-content: center;
}
.cid-uH2EQTbhpn .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uH2EQTbhpn .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uH2EQTbhpn .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uH2EQTbhpn .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cid-uH2EQTbhpn .nav-wrapper .list .item-wrap:hover,
.cid-uH2EQTbhpn .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uH2EQTbhpn .list,
.cid-uH2EQTbhpn .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uH2EQTbhpn .list,
.cid-uH2EQTbhpn .item-wrap,
.cid-uH2EQTbhpn .nav-wrapper {
  color: #ffffff;
}
.cid-uH2EQTmIRI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uH2EQTmIRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2EQTmIRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uH2EQTmIRI h4 {
    margin-top: -30px;
  }
}
.cid-uH2EQTmIRI .btn-secondary {
  color: #191f2d !important;
}
.cid-uH2EQTmIRI .mbr-section-btn {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .cid-uH2EQTmIRI .mbr-section-btn {
    margin-top: 2rem;
  }
}
.cid-uH2EQTmIRI .mbr-section-title {
  color: #625673;
  text-align: center;
}
.cid-uH2EQTmIRI .mbr-section-subtitle {
  color: #dfcefd;
  text-align: center;
}
.cid-uH2EQTmIRI .btn {
  padding: 2rem 3rem;
  color: #8198ff;
}
.cid-uH2EQTmIRI .btn:hover,
.cid-uH2EQTmIRI .btn:focus {
  background: #8198ff !important;
  color: #191f2d !important;
}
.cid-uH2xjpDGUb .collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-uH2xjpDGUb .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #191f2d;
  background: none;
}
.cid-uH2xjpDGUb .navbar.opened {
  transition: all 0.3s;
  background: #191f2d !important;
  border-bottom: 1px solid #fff;
}
.cid-uH2xjpDGUb .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-uH2xjpDGUb .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH2xjpDGUb .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-uH2xjpDGUb .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uH2xjpDGUb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uH2xjpDGUb .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-uH2xjpDGUb .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uH2xjpDGUb .navbar.collapsed.opened .navbar-collapse.show,
.cid-uH2xjpDGUb .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-uH2xjpDGUb .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-uH2xjpDGUb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uH2xjpDGUb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH2xjpDGUb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH2xjpDGUb
  .navbar.collapsed
  .dropdown-menu
  .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uH2xjpDGUb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH2xjpDGUb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uH2xjpDGUb .navbar {
    flex-wrap: nowrap;
  }
  .cid-uH2xjpDGUb .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uH2xjpDGUb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH2xjpDGUb .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-uH2xjpDGUb .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-uH2xjpDGUb .navbar.opened .navbar-collapse.show,
  .cid-uH2xjpDGUb .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-uH2xjpDGUb .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-uH2xjpDGUb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uH2xjpDGUb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH2xjpDGUb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH2xjpDGUb
    .navbar
    .dropdown-menu
    .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uH2xjpDGUb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uH2xjpDGUb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH2xjpDGUb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-uH2xjpDGUb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-uH2xjpDGUb .navbar.navbar-short {
  background: #191f2d !important;
  min-height: 60px;
}
.cid-uH2xjpDGUb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uH2xjpDGUb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uH2xjpDGUb .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uH2xjpDGUb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH2xjpDGUb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH2xjpDGUb .dropdown-item.active,
.cid-uH2xjpDGUb .dropdown-item:active {
  background-color: transparent;
}
.cid-uH2xjpDGUb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH2xjpDGUb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH2xjpDGUb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH2xjpDGUb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191f2d;
}
.cid-uH2xjpDGUb
  .navbar.navbar-expand-lg
  .dropdown
  .dropdown-menu
  .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH2xjpDGUb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH2xjpDGUb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uH2xjpDGUb .navbar-buttons {
  text-align: center;
}
.cid-uH2xjpDGUb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uH2xjpDGUb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uH2xjpDGUb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH2xjpDGUb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH2xjpDGUb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH2xjpDGUb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH2xjpDGUb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH2xjpDGUb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH2xjpDGUb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH2xjpDGUb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH2xjpDGUb .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uH2xjpDGUb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-uH2xjpDGUb a.nav-link:focus {
  outline: none;
}
.cid-uH2xjpDGUb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH2xjpDGUb .nav-link:hover,
.cid-uH2xjpDGUb .dropdown-item:hover {
  color: #ff9e66 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uH2xjpDGUb .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-uH2xjpDGUb .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uH2xjq8np7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #191f2d;
}
.cid-uH2xjq8np7 .container-fluid {
  position: relative;
}
.cid-uH2xjq8np7 .page-title-content {
  width: 100%;
}
.cid-uH2xjq8np7 .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uH2xjq8np7 .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uH2xjq8np7 .page-title-content {
    text-align: center;
  }
}
.cid-uH2xjq8np7 .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uH2xjq8np7 a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
.cid-uH2xjq8np7 a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uH2xjq8np7 a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uH2xjq8np7 a:hover:after,
.cid-uH2xjq8np7 a:focus:after {
  animation-duration: 1s;
  animation-name: slidein;
}
.cid-uH2xjq8np7 a:hover:before,
.cid-uH2xjq8np7 a:focus:before {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-name: slideout;
}
.cid-uH2xjq8np7 a.text-white:hover,
.cid-uH2xjq8np7 a.text-white:focus {
  color: #ffffff !important;
}
.cid-uH2xjq8np7 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uH2AFZODN7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-uH2AFZODN7 .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uH2AFZODN7 .card-img {
  margin-bottom: 2rem;
  overflow: hidden;
  max-height: 250px;
}
.cid-uH2AFZODN7 .mbr-text {
  color: #767676;
}
.cid-uH2AFZODN7 span {
  font-size: 14px;
  color: #ffffff;
}
.cid-uH2AFZODN7 .mbr-section-btn {
  margin-left: 0;
}
.cid-uH2AFZODN7 .date span {
  display: inline-block;
  background-color: #8198ff;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uH2AFZODN7 .card-title {
    text-align: center;
  }
  .cid-uH2AFZODN7 p.mbr-text,
  .cid-uH2AFZODN7 p.date {
    text-align: center;
  }
}
.cid-uH2AFZODN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2AFZODN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH2AFZODN7 .mbr-text,
.cid-uH2AFZODN7 .mbr-section-btn {
  color: #767676;
}
.cid-uH2DIar8nU {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-uH2DIar8nU .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uH2DIar8nU .card-img {
  margin-bottom: 2rem;
  overflow: hidden;
  max-height: 250px;
}
.cid-uH2DIar8nU .mbr-text {
  color: #767676;
}
.cid-uH2DIar8nU span {
  font-size: 14px;
  color: #ffffff;
}
.cid-uH2DIar8nU .mbr-section-btn {
  margin-left: 0;
}
.cid-uH2DIar8nU .date span {
  display: inline-block;
  background-color: #8198ff;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uH2DIar8nU .card-title {
    text-align: center;
  }
  .cid-uH2DIar8nU p.mbr-text,
  .cid-uH2DIar8nU p.date {
    text-align: center;
  }
}
.cid-uH2DIar8nU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2DIar8nU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH2DIar8nU .mbr-text,
.cid-uH2DIar8nU .mbr-section-btn {
  color: #767676;
}
.cid-uH2xjv5HrY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("/img/siniatu-fichaje-1-1705x1007.png");
}
.cid-uH2xjv5HrY .container-fluid {
  position: relative;
}
.cid-uH2xjv5HrY .page-title-content {
  width: 100%;
}
.cid-uH2xjv5HrY .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-uH2xjv5HrY .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-uH2xjv5HrY .page-title-content {
    text-align: center;
  }
}
.cid-uH2xjv5HrY .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-uH2xjv5HrY a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-uH2xjv5HrY a:not(:first-child) {
  margin-left: 20px;
}
.cid-uH2xjv5HrY a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-uH2xjv5HrY a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-uH2xjv5HrY a:hover:after,
.cid-uH2xjv5HrY a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-uH2xjv5HrY a:hover:before,
.cid-uH2xjv5HrY a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-uH2xjv5HrY a.text-white:hover,
.cid-uH2xjv5HrY a.text-white:focus {
  color: #ffffff !important;
}
.cid-uH2xjv5HrY .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-uH2xjv5HrY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2xjv5HrY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH2xjwHs0t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #191f2d;
}
.cid-uH2xjwHs0t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2xjwHs0t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH2xjwHs0t .row {
  justify-content: center;
}
.cid-uH2xjwHs0t .card {
  justify-content: center;
}
.cid-uH2xjwHs0t .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uH2xjwHs0t .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uH2xjwHs0t .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uH2xjwHs0t .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cid-uH2xjwHs0t .nav-wrapper .list .item-wrap:hover,
.cid-uH2xjwHs0t .nav-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uH2xjwHs0t .list,
.cid-uH2xjwHs0t .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uH2xjwHs0t .list,
.cid-uH2xjwHs0t .item-wrap,
.cid-uH2xjwHs0t .nav-wrapper {
  color: #ffffff;
}
.cid-uH2xjyuhoq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uH2xjyuhoq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2xjyuhoq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uH2xjyuhoq h4 {
    margin-top: -30px;
  }
}
.cid-uH2xjyuhoq .btn-secondary {
  color: #191f2d !important;
}
.cid-uH2xjyuhoq .mbr-section-btn {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .cid-uH2xjyuhoq .mbr-section-btn {
    margin-top: 2rem;
  }
}
.cid-uH2xjyuhoq .mbr-section-title {
  color: #625673;
  text-align: center;
}
.cid-uH2xjyuhoq .mbr-section-subtitle {
  color: #dfcefd;
  text-align: center;
}
.cid-uH2xjyuhoq .btn {
  padding: 2rem 3rem;
  color: #8198ff;
}
.cid-uH2xjyuhoq .btn:hover,
.cid-uH2xjyuhoq .btn:focus {
  background: #8198ff !important;
  color: #191f2d !important;
}
