body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-display: swap;
}
.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: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #33bcd6 !important;
}
.bg-success {
  background-color: #fce7d8 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #33bcd6 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #33bcd6 !important;
  border-color: #33bcd6 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #20899d !important;
  border-color: #20899d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #20899d !important;
  border-color: #20899d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f47a35 !important;
  border-color: #f47a35 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #d1530b !important;
  border-color: #d1530b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #d1530b !important;
  border-color: #d1530b !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #fce7d8 !important;
  border-color: #fce7d8 !important;
  color: #c65b0f !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #c65b0f !important;
  background-color: #f7bb91 !important;
  border-color: #f7bb91 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #c65b0f !important;
  background-color: #f7bb91 !important;
  border-color: #f7bb91 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #33bcd6 !important;
  border-color: #33bcd6 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #20899d !important;
  border-color: #20899d !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #20899d !important;
  border-color: #20899d !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: #1b7688;
  color: #1b7688;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #33bcd6;
  border-color: #33bcd6;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #33bcd6 !important;
  border-color: #33bcd6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #b9490a;
  color: #b9490a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #f47a35;
  border-color: #f47a35;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f47a35 !important;
  border-color: #f47a35 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #f5ad79;
  color: #f5ad79;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c65b0f;
  background-color: #fce7d8;
  border-color: #fce7d8;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #c65b0f !important;
  background-color: #fce7d8 !important;
  border-color: #fce7d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1b7688;
  color: #1b7688;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #33bcd6;
  border-color: #33bcd6;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #33bcd6 !important;
  border-color: #33bcd6 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #33bcd6 !important;
}
.text-secondary {
  color: #f47a35 !important;
}
.text-success {
  color: #fce7d8 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #33bcd6 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1b7688 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #b9490a !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #f5ad79 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #1b7688 !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: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #33bcd6;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #33bcd6;
  border-color: #33bcd6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #33bcd6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ddf4f8;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ddf4f8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 2.08rem;
}
blockquote {
  border-color: #33bcd6;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #33bcd6;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #33bcd6;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #33bcd6;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #33bcd6;
  border-bottom-color: #33bcd6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #33bcd6 !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: #f47a35 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2333bcd6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-tGyR6Oa359 {
  z-index: 1000;
  width: 100%;
}
.cid-tGyR6Oa359 nav.navbar {
  position: fixed;
}
.cid-tGyR6Oa359 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGyR6Oa359 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGyR6Oa359 .dropdown-item:hover,
.cid-tGyR6Oa359 .dropdown-item:focus {
  background: #33bcd6 !important;
  color: white !important;
}
.cid-tGyR6Oa359 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGyR6Oa359 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGyR6Oa359 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGyR6Oa359 .nav-link {
  position: relative;
}
.cid-tGyR6Oa359 .container {
  display: flex;
  margin: auto;
}
.cid-tGyR6Oa359 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown-menu,
.cid-tGyR6Oa359 .navbar.opened {
  background: #2b3574 !important;
}
.cid-tGyR6Oa359 .nav-item:focus,
.cid-tGyR6Oa359 .nav-link:focus {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGyR6Oa359 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGyR6Oa359 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(43, 53, 116, 0.7);
}
.cid-tGyR6Oa359 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGyR6Oa359 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGyR6Oa359 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGyR6Oa359 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar.collapsed {
  justify-content: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGyR6Oa359 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGyR6Oa359 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGyR6Oa359 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGyR6Oa359 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGyR6Oa359 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGyR6Oa359 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGyR6Oa359 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGyR6Oa359 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGyR6Oa359 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGyR6Oa359 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGyR6Oa359 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGyR6Oa359 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown-item.active,
.cid-tGyR6Oa359 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGyR6Oa359 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b3574;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGyR6Oa359 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGyR6Oa359 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGyR6Oa359 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGyR6Oa359 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #33bcd6;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGyR6Oa359 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGyR6Oa359 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGyR6Oa359 .navbar {
    height: 70px;
  }
  .cid-tGyR6Oa359 .navbar.opened {
    height: auto;
  }
  .cid-tGyR6Oa359 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH96HwmPJN {
  background-image: url("../../../assets/images/atipe-lion-3.jpg");
}
.cid-uH96HwmPJN H1 {
  color: #f47a35;
}
.cid-suB1mbe4lK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #293a6b;
}
.cid-suB1mbe4lK .mbr-section-subtitle {
  color: #f47a35;
  text-align: center;
}
.cid-suB1mbe4lK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-suB1mbe4lK .mbr-section-title {
  color: #fce7d8;
  text-align: center;
}
.cid-suAe2Lw4Qx {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #293a6b;
}
.cid-suAe2Lw4Qx .timeline-element {
  position: relative;
}
.cid-suAe2Lw4Qx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-suAe2Lw4Qx .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #33bcd6;
  top: 30px;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-suAe2Lw4Qx .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-suAe2Lw4Qx .iconBackground {
    left: 50%;
  }
}
.cid-suAe2Lw4Qx .row {
  flex-direction: row-reverse;
}
.cid-suAe2Lw4Qx .row:after {
  content: "";
  position: absolute;
  background-color: #33bcd6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-suAe2Lw4Qx .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-suAe2Lw4Qx .row:after {
    left: 50%;
  }
}
.cid-suAe2Lw4Qx .row:nth-child(even) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-suAe2Lw4Qx .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-suAe2Lw4Qx .timeline-date-wrapper,
  .cid-suAe2Lw4Qx .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-suAe2Lw4Qx .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-suAe2Lw4Qx .timeline-date-wrapper,
  .cid-suAe2Lw4Qx .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-suAe2Lw4Qx .timeline-date-wrapper,
  .cid-suAe2Lw4Qx .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-suAe2Lw4Qx .mbr-section-title {
  color: #fce7d8;
}
.cid-suAe2Lw4Qx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-suAe2Lw4Qx .mbr-timeline-title {
  color: #f47a35;
}
.cid-suAe2Lw4Qx .mbr-text {
  color: #ffffff;
}
.cid-suAe2Lw4Qx .mbr-timeline-date {
  color: #33bcd6;
}
.cid-suAKvsTO0f {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mapa-atipe-1.jpg");
}
.cid-suAKvsTO0f .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-suAKvsTO0f .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-suAKvsTO0f .mbr-section-title {
  color: #ffffff;
}
.cid-suAKvsTO0f .mbr-text,
.cid-suAKvsTO0f .mbr-section-btn {
  color: #fce7d8;
}
.cid-suAPYgDkNK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #292e68;
}
.cid-suAPYgDkNK .mbr-section-subtitle {
  color: #fce7d8;
  text-align: left;
}
.cid-suAPYgDkNK .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-suAPYgDkNK .mbr-section-title {
  color: #f47a35;
  text-align: left;
}
.cid-suAP6GP7yd {
  background-color: #f47a35;
}
@media (max-width: 991px) {
  .cid-suAP6GP7yd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-suAP6GP7yd .row {
  flex-direction: row-reverse;
}
.cid-suAP6GP7yd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-suAP6GP7yd .text-wrapper {
    padding: 2rem;
  }
}
.cid-suAP6GP7yd .mbr-section-title {
  color: #292e68;
  text-align: left;
}
.cid-suAP6GP7yd .mbr-text {
  color: #ffffff;
}
.cid-uFfMI5AVI0 {
  background-image: url("../../../assets/images/point-gold-atipe-1.jpg");
}
.cid-uFfMI5AVI0 H1 {
  color: #fce7d8;
  text-align: left;
}
.cid-uFfMI5AVI0 .mbr-text,
.cid-uFfMI5AVI0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uH3ChOy63u {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #293a6b;
}
.cid-uH3ChOy63u .mbr-section-subtitle {
  color: #f47a35;
}
.cid-uH3ChOy63u .mbr-text {
  color: #ffffff;
}
.cid-uH3ChOy63u .mbr-section-title {
  color: #fce7d8;
  text-align: left;
}
.cid-uH3sGdyuwb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #293a6b;
}
.cid-uH3sGdyuwb .mbr-section-subtitle {
  color: #f47a35;
}
.cid-uH3sGdyuwb .mbr-text {
  color: #ffffff;
}
.cid-uH3sGdyuwb .mbr-section-title {
  color: #fce7d8;
  text-align: left;
}
.cid-uFfVJNQhze {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #293a6b;
}
.cid-uFfVJNQhze .mbr-section-subtitle {
  color: #f47a35;
}
.cid-uFfVJNQhze .mbr-text {
  color: #ffffff;
}
.cid-uFfVJNQhze .mbr-section-title {
  color: #fce7d8;
  text-align: left;
}
.cid-uFfVTTbjHZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #293a6b;
}
.cid-uFfVTTbjHZ .mbr-section-subtitle {
  color: #33bcd6;
}
.cid-uFfVTTbjHZ .mbr-text {
  color: #ffffff;
}
.cid-uFfVTTbjHZ .mbr-section-title {
  color: #fce7d8;
  text-align: left;
}
.cid-uFg8VyVaJi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #293a6b;
}
.cid-uFg8VyVaJi .mbr-section-subtitle {
  color: #33bcd6;
}
.cid-uFg8VyVaJi .mbr-text {
  color: #ffffff;
}
.cid-uFg8VyVaJi .mbr-section-title {
  color: #fce7d8;
  text-align: left;
}
.cid-uIyUUhOHR2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #293a6b;
}
.cid-uIyUUhOHR2 .mbr-section-subtitle {
  color: #fce7d8;
}
.cid-uIyUUhOHR2 .mbr-text {
  color: #ffffff;
}
.cid-uIyUUhOHR2 .mbr-section-title {
  color: #f47a35;
  text-align: left;
}
.cid-uH9hvg96EK {
  background: #293a6b;
  padding-top: 120px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #fce7d8, #293a6b);
}
.cid-uH9hvg96EK .image-block {
  margin: auto;
}
.cid-uH9hvg96EK figcaption {
  position: relative;
}
.cid-uH9hvg96EK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uH9hvg96EK .image-block {
    width: 100% !important;
  }
}
.cid-uFg8JKfOej {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #fce7d8;
}
.cid-uFg8JKfOej .mbr-section-subtitle {
  color: #f47a35;
}
.cid-uFg8JKfOej .mbr-text {
  color: #293a6b;
}
.cid-uFg8JKfOej .mbr-section-title {
  color: #293a6b;
  text-align: left;
}
.cid-uFfZleV4hp {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fce7d8;
}
.cid-uFfZleV4hp .mbr-section-subtitle {
  color: #293a6b;
}
.cid-uFfZleV4hp .mbr-text {
  color: #202a63;
}
.cid-uFfZleV4hp .mbr-section-title {
  color: #fce7d8;
  text-align: left;
}
.cid-uFfRe4VUg1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fce7d8;
}
.cid-uFfRe4VUg1 .mbr-section-subtitle {
  color: #f47a35;
}
.cid-uFfRe4VUg1 .mbr-text {
  color: #293a6b;
}
.cid-uFfRe4VUg1 .mbr-section-title {
  color: #293a6b;
  text-align: left;
}
.cid-uH7U644XmR {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #fce7d8;
}
.cid-uH7U644XmR h2 {
  text-align: left;
}
.cid-uH7U644XmR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uH7U644XmR p {
  color: #767676;
  text-align: left;
}
.cid-uH7U644XmR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uH7U644XmR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uH7U644XmR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uH7U644XmR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uH7U644XmR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uH7U644XmR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uH7U644XmR .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uH7U644XmR .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uH7U644XmR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uH7U644XmR .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uH7U644XmR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uH7U644XmR H2 {
  color: #293a6b;
}
.cid-uH7U644XmR .mbr-text {
  color: #f47a35;
}
.cid-uH7U644XmR H4 {
  color: #292e68;
}
.cid-uH7U644XmR P {
  color: #292e68;
}
.cid-uH3V2WL25F {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #fce7d8;
}
.cid-uH3V2WL25F .mbr-section-subtitle {
  color: #292e68;
}
.cid-uH3V2WL25F .mbr-text {
  color: #292e68;
}
.cid-uH3V2WL25F .mbr-section-title {
  color: #f47a35;
  text-align: left;
}
.cid-uIz042b8mo {
  background-image: url("../../../assets/images/atipe-diamond.jpg");
}
.cid-uIz042b8mo H1 {
  color: #f47a35;
  text-align: center;
}
.cid-uIz042b8mo .mbr-text,
.cid-uIz042b8mo .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uIz042b8mo H3 {
  color: #fce7d8;
}
.cid-uH953KabtF {
  background-color: #f47a35;
}
.cid-uH953KabtF H1 {
  color: #ffffff;
}
.cid-suARAg79AJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fce7d8;
}
.cid-suARAg79AJ .mbr-section-title {
  color: #f47a35;
}
.cid-suARAg79AJ .mbr-text,
.cid-suARAg79AJ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-suARAg79AJ .mbr-section-subtitle {
  color: #292e68;
}
.cid-uI632mTZwm {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #293a6b;
}
.cid-uI632mTZwm .mbr-section-title {
  color: #f47a35;
}
.cid-uI632mTZwm .mbr-text,
.cid-uI632mTZwm .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uI632mTZwm .mbr-section-subtitle {
  color: #fce7d8;
}
.cid-uI60FQdxI3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #292e68;
}
.cid-uI60FQdxI3 .card-img {
  background-color: #fff;
}
.cid-uI60FQdxI3 .card {
  align-self: stretch;
}
.cid-uI60FQdxI3 .card-box {
  padding: 2rem;
}
.cid-uI60FQdxI3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uI60FQdxI3 p {
  text-align: left;
}
.cid-uI60FQdxI3 .mbr-text {
  color: #767676;
}
.cid-uI60FQdxI3 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uI60FQdxI3 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uI60FQdxI3 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uI60FQdxI3 .card-title {
  color: #33bcd6;
  text-align: center;
}
.cid-uI62YlwJno {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #292e68;
}
.cid-uI62YlwJno .card-img {
  background-color: #fff;
}
.cid-uI62YlwJno .card {
  align-self: stretch;
}
.cid-uI62YlwJno .card-box {
  padding: 2rem;
}
.cid-uI62YlwJno h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uI62YlwJno p {
  text-align: left;
}
.cid-uI62YlwJno .mbr-text {
  color: #767676;
}
.cid-uI62YlwJno .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uI62YlwJno .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uI62YlwJno .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uI63MIij7W {
  padding-top: 0px;
  padding-bottom: 135px;
  background-color: #292e68;
}
.cid-uI63MIij7W .card-img {
  background-color: #fff;
}
.cid-uI63MIij7W .card {
  align-self: stretch;
}
.cid-uI63MIij7W .card-box {
  padding: 2rem;
}
.cid-uI63MIij7W h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uI63MIij7W p {
  text-align: left;
}
.cid-uI63MIij7W .mbr-text {
  color: #767676;
}
.cid-uI63MIij7W .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uI63MIij7W .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uI63MIij7W .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-suASWWc5Al {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #f47a35;
}
.cid-suASWWc5Al .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-suASWWc5Al form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-suASWWc5Al form.mbr-form {
    padding: 3rem 2rem;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-suASWWc5Al form.mbr-form {
    padding: 1rem;
  }
}
.cid-suASWWc5Al form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-suASWWc5Al form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-suASWWc5Al .mbr-section-title {
  color: #293a6b;
  text-align: center;
}
.cid-suASWWc5Al .mbr-section-subtitle {
  color: #fce7d8;
}
.cid-suASWWc5Al P {
  text-align: left;
}
.cid-tGyPD8oVkh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/atipe-relacionamento-1.png");
}
.cid-tGyPD8oVkh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tGyPD8oVkh .row {
    text-align: center;
  }
  .cid-tGyPD8oVkh .row > div {
    margin: auto;
  }
  .cid-tGyPD8oVkh .social-row {
    justify-content: center;
  }
}
.cid-tGyPD8oVkh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGyPD8oVkh .list {
  list-style: none;
  padding-left: 0;
  color: #33bcd6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 0rem;
  }
}
.cid-tGyPD8oVkh .mbr-text {
  color: #fce7d8;
  text-align: center;
}
.cid-tGyPD8oVkh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tGyPD8oVkh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tGyPD8oVkh H5 {
  color: #f47a35;
  text-align: center;
}
.cid-tGyPD8oVkh .copyright {
  text-align: center;
  color: #f47a35;
}
.cid-tGyPD8oVkh .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh .list P {
  text-align: center;
}
.cid-tGyR6Oa359 {
  z-index: 1000;
  width: 100%;
}
.cid-tGyR6Oa359 nav.navbar {
  position: fixed;
}
.cid-tGyR6Oa359 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGyR6Oa359 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGyR6Oa359 .dropdown-item:hover,
.cid-tGyR6Oa359 .dropdown-item:focus {
  background: #33bcd6 !important;
  color: white !important;
}
.cid-tGyR6Oa359 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGyR6Oa359 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGyR6Oa359 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGyR6Oa359 .nav-link {
  position: relative;
}
.cid-tGyR6Oa359 .container {
  display: flex;
  margin: auto;
}
.cid-tGyR6Oa359 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown-menu,
.cid-tGyR6Oa359 .navbar.opened {
  background: #2b3574 !important;
}
.cid-tGyR6Oa359 .nav-item:focus,
.cid-tGyR6Oa359 .nav-link:focus {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGyR6Oa359 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGyR6Oa359 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(43, 53, 116, 0.7);
}
.cid-tGyR6Oa359 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGyR6Oa359 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGyR6Oa359 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGyR6Oa359 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar.collapsed {
  justify-content: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGyR6Oa359 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGyR6Oa359 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGyR6Oa359 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGyR6Oa359 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGyR6Oa359 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGyR6Oa359 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGyR6Oa359 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGyR6Oa359 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGyR6Oa359 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGyR6Oa359 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGyR6Oa359 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGyR6Oa359 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown-item.active,
.cid-tGyR6Oa359 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGyR6Oa359 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b3574;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGyR6Oa359 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGyR6Oa359 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGyR6Oa359 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGyR6Oa359 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #33bcd6;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGyR6Oa359 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGyR6Oa359 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGyR6Oa359 .navbar {
    height: 70px;
  }
  .cid-tGyR6Oa359 .navbar.opened {
    height: auto;
  }
  .cid-tGyR6Oa359 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suBbZcSoFj {
  background-image: url("../../../assets/images/atipe-lion-3.jpg");
}
.cid-suBbZcSoFj .mbr-section-title {
  color: #fce7d8;
}
.cid-suBbZcSoFj .mbr-text,
.cid-suBbZcSoFj .mbr-section-btn {
  color: #ffffff;
}
.cid-suBbZcSoFj .mbr-section-subtitle {
  color: #f47a35;
}
.cid-uHfHo3gt5j {
  background-color: #f47a35;
}
.cid-uHfHo3gt5j .mbr-section-title {
  color: #fce7d8;
}
.cid-uHfHo3gt5j .mbr-text,
.cid-uHfHo3gt5j .mbr-section-btn {
  color: #292e68;
}
.cid-uHfHo3gt5j .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFaceVkRTT {
  background-color: #fce7d8;
}
.cid-uFaceVkRTT .mbr-section-title {
  color: #292e68;
}
.cid-uFaceVkRTT .mbr-text,
.cid-uFaceVkRTT .mbr-section-btn {
  color: #ffffff;
}
.cid-uFaceVkRTT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-suBjozJsUM {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/point-gold-atipe.jpg");
}
.cid-suBjozJsUM .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-suBjozJsUM .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-suBjozJsUM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-suBjozJsUM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-suBjozJsUM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-suBjozJsUM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-suBjozJsUM .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-suBjozJsUM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-suBjozJsUM .card-title {
  color: #292e68;
}
.cid-suBjozJsUM .mbr-text,
.cid-suBjozJsUM .mbr-section-btn {
  color: #293a6b;
}
.cid-suBr7lxmYY {
  background-image: url("../../../assets/images/atipe-brands-points-bk-3.jpg");
}
.cid-suBr7lxmYY .card-wrapper {
  background: #fce7d8;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-suBr7lxmYY .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-suBr7lxmYY .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-suBr7lxmYY .card-wrapper {
    padding: 4rem;
  }
}
.cid-suBr7lxmYY .mbr-text,
.cid-suBr7lxmYY .mbr-section-btn {
  color: #293a6b;
}
.cid-suBr7lxmYY .card-title,
.cid-suBr7lxmYY .card-box {
  text-align: left;
  color: #292e68;
}
.cid-uHfz6rdwKA {
  background-image: url("../../../assets/images/atipe-relacionamento-1.png");
}
.cid-uHfz6rdwKA P {
  color: #767676;
}
.cid-uHfz6rdwKA H1 {
  color: #fce7d8;
}
.cid-uHfC5i64gb {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #fce7d8;
}
.cid-uHfC5i64gb .mbr-section-subtitle {
  color: #33bcd6;
  text-align: left;
}
.cid-uHfC5i64gb .mbr-section-title {
  color: #292e68;
  text-align: left;
}
.cid-uHfC5i64gb .mbr-text {
  color: #292e68;
}
.cid-uFajykxQEP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fce7d8;
}
.cid-uFajykxQEP .mbr-section-subtitle {
  color: #292e68;
}
.cid-uFajykxQEP .mbr-section-title {
  color: #f47a35;
  text-align: left;
}
.cid-uFajykxQEP .mbr-text {
  color: #292e68;
}
.cid-suBmJ2nCDm {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #293a6b;
}
.cid-suBmJ2nCDm .mbr-section-subtitle {
  color: #f47a35;
  text-align: center;
}
.cid-suBmJ2nCDm .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-suBmJ2nCDm .mbr-section-title {
  color: #fce7d8;
  text-align: center;
}
.cid-uHfEzw5vNE H1 {
  color: #f47a35;
}
.cid-tGyPD8oVkh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/atipe-relacionamento-1.png");
}
.cid-tGyPD8oVkh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tGyPD8oVkh .row {
    text-align: center;
  }
  .cid-tGyPD8oVkh .row > div {
    margin: auto;
  }
  .cid-tGyPD8oVkh .social-row {
    justify-content: center;
  }
}
.cid-tGyPD8oVkh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGyPD8oVkh .list {
  list-style: none;
  padding-left: 0;
  color: #33bcd6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 0rem;
  }
}
.cid-tGyPD8oVkh .mbr-text {
  color: #fce7d8;
  text-align: center;
}
.cid-tGyPD8oVkh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tGyPD8oVkh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tGyPD8oVkh H5 {
  color: #f47a35;
  text-align: center;
}
.cid-tGyPD8oVkh .copyright {
  text-align: center;
  color: #f47a35;
}
.cid-tGyPD8oVkh .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh .list P {
  text-align: center;
}
.cid-tGyR6Oa359 {
  z-index: 1000;
  width: 100%;
}
.cid-tGyR6Oa359 nav.navbar {
  position: fixed;
}
.cid-tGyR6Oa359 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGyR6Oa359 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGyR6Oa359 .dropdown-item:hover,
.cid-tGyR6Oa359 .dropdown-item:focus {
  background: #33bcd6 !important;
  color: white !important;
}
.cid-tGyR6Oa359 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGyR6Oa359 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGyR6Oa359 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGyR6Oa359 .nav-link {
  position: relative;
}
.cid-tGyR6Oa359 .container {
  display: flex;
  margin: auto;
}
.cid-tGyR6Oa359 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown-menu,
.cid-tGyR6Oa359 .navbar.opened {
  background: #2b3574 !important;
}
.cid-tGyR6Oa359 .nav-item:focus,
.cid-tGyR6Oa359 .nav-link:focus {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGyR6Oa359 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGyR6Oa359 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(43, 53, 116, 0.7);
}
.cid-tGyR6Oa359 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGyR6Oa359 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGyR6Oa359 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGyR6Oa359 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar.collapsed {
  justify-content: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGyR6Oa359 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGyR6Oa359 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGyR6Oa359 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGyR6Oa359 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGyR6Oa359 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGyR6Oa359 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGyR6Oa359 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGyR6Oa359 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGyR6Oa359 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGyR6Oa359 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGyR6Oa359 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGyR6Oa359 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown-item.active,
.cid-tGyR6Oa359 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGyR6Oa359 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b3574;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGyR6Oa359 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGyR6Oa359 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGyR6Oa359 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGyR6Oa359 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #33bcd6;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGyR6Oa359 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGyR6Oa359 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGyR6Oa359 .navbar {
    height: 70px;
  }
  .cid-tGyR6Oa359 .navbar.opened {
    height: auto;
  }
  .cid-tGyR6Oa359 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suBQWka6dO {
  background-image: url("../../../assets/images/mbr-1920x1254.jpg");
}
.cid-suBQWka6dO .mbr-section-title {
  color: #fce7d8;
}
.cid-suBQWka6dO .mbr-text,
.cid-suBQWka6dO .mbr-section-btn {
  color: #ffffff;
}
.cid-suBQWka6dO .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/atipe-relacionamento-1.png");
}
.cid-tGyPD8oVkh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tGyPD8oVkh .row {
    text-align: center;
  }
  .cid-tGyPD8oVkh .row > div {
    margin: auto;
  }
  .cid-tGyPD8oVkh .social-row {
    justify-content: center;
  }
}
.cid-tGyPD8oVkh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGyPD8oVkh .list {
  list-style: none;
  padding-left: 0;
  color: #33bcd6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 0rem;
  }
}
.cid-tGyPD8oVkh .mbr-text {
  color: #fce7d8;
  text-align: center;
}
.cid-tGyPD8oVkh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tGyPD8oVkh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tGyPD8oVkh H5 {
  color: #f47a35;
  text-align: center;
}
.cid-tGyPD8oVkh .copyright {
  text-align: center;
  color: #f47a35;
}
.cid-tGyPD8oVkh .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh .list P {
  text-align: center;
}
.cid-tGyR6Oa359 {
  z-index: 1000;
  width: 100%;
}
.cid-tGyR6Oa359 nav.navbar {
  position: fixed;
}
.cid-tGyR6Oa359 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGyR6Oa359 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGyR6Oa359 .dropdown-item:hover,
.cid-tGyR6Oa359 .dropdown-item:focus {
  background: #33bcd6 !important;
  color: white !important;
}
.cid-tGyR6Oa359 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGyR6Oa359 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGyR6Oa359 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGyR6Oa359 .nav-link {
  position: relative;
}
.cid-tGyR6Oa359 .container {
  display: flex;
  margin: auto;
}
.cid-tGyR6Oa359 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown-menu,
.cid-tGyR6Oa359 .navbar.opened {
  background: #2b3574 !important;
}
.cid-tGyR6Oa359 .nav-item:focus,
.cid-tGyR6Oa359 .nav-link:focus {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGyR6Oa359 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGyR6Oa359 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(43, 53, 116, 0.7);
}
.cid-tGyR6Oa359 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGyR6Oa359 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGyR6Oa359 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGyR6Oa359 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar.collapsed {
  justify-content: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGyR6Oa359 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGyR6Oa359 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGyR6Oa359 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGyR6Oa359 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGyR6Oa359 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGyR6Oa359 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGyR6Oa359 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGyR6Oa359 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGyR6Oa359 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGyR6Oa359 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGyR6Oa359 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGyR6Oa359 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown-item.active,
.cid-tGyR6Oa359 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGyR6Oa359 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b3574;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGyR6Oa359 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGyR6Oa359 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGyR6Oa359 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGyR6Oa359 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #33bcd6;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGyR6Oa359 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGyR6Oa359 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGyR6Oa359 .navbar {
    height: 70px;
  }
  .cid-tGyR6Oa359 .navbar.opened {
    height: auto;
  }
  .cid-tGyR6Oa359 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suBJUnveG5 {
  background-image: url("../../../assets/images/atipe-lion-3.jpg");
}
.cid-suBJUnveG5 .mbr-section-title {
  color: #fce7d8;
}
.cid-suBJUnveG5 .mbr-text,
.cid-suBJUnveG5 .mbr-section-btn {
  color: #ffffff;
}
.cid-suBJUnveG5 .mbr-section-subtitle {
  color: #f47a35;
}
.cid-uH9B7oUCho {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #293a6b;
}
.cid-uH9B7oUCho H2 {
  text-align: center;
  color: #fce7d8;
}
.cid-uH9B7oUCho H3 {
  color: #ffffff;
  text-align: center;
}
.cid-suBLE8JULi {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #293a6b;
}
@media (min-width: 1500px) {
  .cid-suBLE8JULi .container {
    max-width: 1400px;
  }
}
.cid-suBLE8JULi .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #33bcd6;
  margin-bottom: 2rem;
}
.cid-suBLE8JULi .card-wrapper {
  margin-top: 3rem;
}
.cid-suBLE8JULi .row {
  justify-content: center;
}
.cid-suBLE8JULi .mbr-section-title {
  color: #f47a35;
}
.cid-suBLE8JULi .card-title,
.cid-suBLE8JULi .iconfont-wrapper {
  color: #ffffff;
}
.cid-suBLE8JULi .card-text {
  color: #fce7d8;
}
.cid-uENheW5XfY {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #293a6b;
}
.cid-uENheW5XfY P {
  color: #767676;
}
.cid-uENheW5XfY H1 {
  color: #f47a35;
}
.cid-uENheW5XfY .mbr-text,
.cid-uENheW5XfY .mbr-section-btn {
  color: #ffffff;
}
.cid-uENheW5XfY H3 {
  color: #33bcd6;
}
.cid-suBXpPFhCU {
  background-color: #293a6b;
}
@media (max-width: 991px) {
  .cid-suBXpPFhCU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-suBXpPFhCU .row {
  flex-direction: row-reverse;
}
.cid-suBXpPFhCU img {
  width: 100%;
}
.cid-suBMRiFXLI {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #293a6b;
}
@media (min-width: 1500px) {
  .cid-suBMRiFXLI .container {
    max-width: 1400px;
  }
}
.cid-suBMRiFXLI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #33bcd6;
  margin-bottom: 2rem;
}
.cid-suBMRiFXLI .card-wrapper {
  margin-top: 3rem;
}
.cid-suBMRiFXLI .row {
  justify-content: center;
}
.cid-suBMRiFXLI .mbr-section-title {
  color: #f47a35;
}
.cid-suBMRiFXLI .card-title,
.cid-suBMRiFXLI .iconfont-wrapper {
  color: #ffffff;
}
.cid-suBMRiFXLI .card-text {
  color: #fce7d8;
}
.cid-suBOhfzozh {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fce7d8;
}
@media (min-width: 1500px) {
  .cid-suBOhfzozh .container {
    max-width: 1400px;
  }
}
.cid-suBOhfzozh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #33bcd6;
  margin-bottom: 2rem;
}
.cid-suBOhfzozh .card-wrapper {
  margin-top: 3rem;
}
.cid-suBOhfzozh .row {
  justify-content: center;
}
.cid-suBOhfzozh .mbr-section-title {
  color: #293a6b;
}
.cid-suBOhfzozh .card-title,
.cid-suBOhfzozh .iconfont-wrapper {
  color: #f47a35;
}
.cid-suBOhfzozh .card-text {
  color: #293a6b;
}
.cid-tGyGGTSEaf .mbr-section-title {
  color: #fce7d8;
}
.cid-tGyGGTSEaf .mbr-text,
.cid-tGyGGTSEaf .mbr-section-btn {
  color: #ffffff;
}
.cid-tGyGGTSEaf .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/atipe-relacionamento-1.png");
}
.cid-tGyPD8oVkh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tGyPD8oVkh .row {
    text-align: center;
  }
  .cid-tGyPD8oVkh .row > div {
    margin: auto;
  }
  .cid-tGyPD8oVkh .social-row {
    justify-content: center;
  }
}
.cid-tGyPD8oVkh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGyPD8oVkh .list {
  list-style: none;
  padding-left: 0;
  color: #33bcd6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 0rem;
  }
}
.cid-tGyPD8oVkh .mbr-text {
  color: #fce7d8;
  text-align: center;
}
.cid-tGyPD8oVkh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tGyPD8oVkh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tGyPD8oVkh H5 {
  color: #f47a35;
  text-align: center;
}
.cid-tGyPD8oVkh .copyright {
  text-align: center;
  color: #f47a35;
}
.cid-tGyPD8oVkh .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh .list P {
  text-align: center;
}
.cid-tGyR6Oa359 {
  z-index: 1000;
  width: 100%;
}
.cid-tGyR6Oa359 nav.navbar {
  position: fixed;
}
.cid-tGyR6Oa359 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGyR6Oa359 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGyR6Oa359 .dropdown-item:hover,
.cid-tGyR6Oa359 .dropdown-item:focus {
  background: #33bcd6 !important;
  color: white !important;
}
.cid-tGyR6Oa359 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGyR6Oa359 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGyR6Oa359 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGyR6Oa359 .nav-link {
  position: relative;
}
.cid-tGyR6Oa359 .container {
  display: flex;
  margin: auto;
}
.cid-tGyR6Oa359 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown-menu,
.cid-tGyR6Oa359 .navbar.opened {
  background: #2b3574 !important;
}
.cid-tGyR6Oa359 .nav-item:focus,
.cid-tGyR6Oa359 .nav-link:focus {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGyR6Oa359 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGyR6Oa359 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGyR6Oa359 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGyR6Oa359 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(43, 53, 116, 0.7);
}
.cid-tGyR6Oa359 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGyR6Oa359 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGyR6Oa359 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGyR6Oa359 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar.collapsed {
  justify-content: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGyR6Oa359 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGyR6Oa359 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGyR6Oa359 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGyR6Oa359 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGyR6Oa359 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGyR6Oa359 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGyR6Oa359 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGyR6Oa359 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGyR6Oa359 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGyR6Oa359 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGyR6Oa359 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGyR6Oa359 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGyR6Oa359 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGyR6Oa359 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGyR6Oa359 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGyR6Oa359 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGyR6Oa359 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGyR6Oa359 .dropdown-item.active,
.cid-tGyR6Oa359 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGyR6Oa359 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGyR6Oa359 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b3574;
}
.cid-tGyR6Oa359 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGyR6Oa359 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGyR6Oa359 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGyR6Oa359 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGyR6Oa359 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #33bcd6;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGyR6Oa359 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGyR6Oa359 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGyR6Oa359 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGyR6Oa359 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGyR6Oa359 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGyR6Oa359 .navbar {
    height: 70px;
  }
  .cid-tGyR6Oa359 .navbar.opened {
    height: auto;
  }
  .cid-tGyR6Oa359 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suBpUcGpYi {
  background-image: url("../../../assets/images/atipe-lion-3.jpg");
}
.cid-suBpUcGpYi .mbr-section-title {
  color: #fce7d8;
}
.cid-suBpUcGpYi .mbr-text,
.cid-suBpUcGpYi .mbr-section-btn {
  color: #ffffff;
}
.cid-suBpUcGpYi .mbr-section-subtitle {
  color: #f47a35;
}
.cid-suBwC7MPLN {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #fce7d8;
}
.cid-suBwC7MPLN .mbr-section-title {
  color: #f47a35;
}
.cid-suBwC7MPLN .mbr-section-subtitle {
  color: #293a6b;
}
.cid-suBvtbO5M9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fce7d8;
}
@media (min-width: 1500px) {
  .cid-suBvtbO5M9 .container {
    max-width: 1400px;
  }
}
.cid-suBvtbO5M9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #33bcd6;
  margin-bottom: 2rem;
}
.cid-suBvtbO5M9 .card-wrapper {
  margin-top: 3rem;
}
.cid-suBvtbO5M9 .row {
  justify-content: center;
}
.cid-suBvtbO5M9 .card-text {
  text-align: left;
  color: #292e68;
}
.cid-suBvtbO5M9 .card-title,
.cid-suBvtbO5M9 .iconfont-wrapper {
  text-align: left;
  color: #292e68;
}
.cid-suBvtbO5M9 .mbr-section-title {
  color: #f47a35;
}
.cid-suBvtbO5M9 .mbr-section-subtitle {
  color: #292e68;
}
.cid-suBwY4iXdB {
  padding-top: 4rem;
  padding-bottom: 10rem;
  background-color: #fce7d8;
}
.cid-suBwY4iXdB .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-suBwY4iXdB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-suBwY4iXdB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-suBwY4iXdB .text-wrapper {
    padding: 2rem;
  }
}
.cid-suBwY4iXdB .mbr-section-title {
  color: #f47a35;
}
.cid-suBwY4iXdB .mbr-text {
  color: #292e68;
}
.cid-suBBPZOfTp {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/atipe-relacionamento-1.png");
}
.cid-suBBPZOfTp .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-suBBPZOfTp .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-suBBPZOfTp .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-suBBPZOfTp .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-suBBPZOfTp .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-suBBPZOfTp .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-suBBPZOfTp .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-suBBPZOfTp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-suBBPZOfTp .card-title {
  color: #f47a35;
}
.cid-suBBPZOfTp .mbr-text,
.cid-suBBPZOfTp .mbr-section-btn {
  color: #292e68;
}
.cid-suBB3xwdGU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fce7d8;
}
.cid-suBB3xwdGU .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-suBB3xwdGU .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-suBB3xwdGU .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #33bcd6;
}
.cid-suBB3xwdGU .panel-body,
.cid-suBB3xwdGU .card-header {
  padding: 1rem 0;
}
.cid-suBB3xwdGU .panel-title-edit {
  color: #f47a35;
}
.cid-suBB3xwdGU H3 {
  color: #292e68;
  text-align: left;
}
.cid-suBB3xwdGU .panel-text {
  color: #292e68;
}
.cid-suBHz6rqcG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #292e68;
}
.cid-suBHz6rqcG .mbr-section-subtitle {
  color: #33bcd6;
}
.cid-suBHz6rqcG .mbr-section-title {
  color: #fce7d8;
}
.cid-suBHz6rqcG .mbr-text {
  color: #ffffff;
}
.cid-suBPvSl0A5 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #292e68;
}
@media (min-width: 992px) {
  .cid-suBPvSl0A5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-suBPvSl0A5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-suBPvSl0A5 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-suBPvSl0A5 .position {
  color: #f47a35;
}
.cid-suBPvSl0A5 .name {
  color: #ffffff;
}
.cid-suBPvSl0A5 .mbr-text {
  color: #fce7d8;
}
.cid-suBJzIduV9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.cid-suBJzIduV9 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-suBJzIduV9 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-suBJzIduV9 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-suBJzIduV9 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-suBJzIduV9 .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #33bcd6;
}
.cid-suBJzIduV9 .mbr-section-title {
  color: #fce7d8;
}
.cid-suBJzIduV9 .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/atipe-relacionamento-1.png");
}
.cid-tGyPD8oVkh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tGyPD8oVkh .row {
    text-align: center;
  }
  .cid-tGyPD8oVkh .row > div {
    margin: auto;
  }
  .cid-tGyPD8oVkh .social-row {
    justify-content: center;
  }
}
.cid-tGyPD8oVkh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGyPD8oVkh .list {
  list-style: none;
  padding-left: 0;
  color: #33bcd6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGyPD8oVkh .list {
    margin-bottom: 0rem;
  }
}
.cid-tGyPD8oVkh .mbr-text {
  color: #fce7d8;
  text-align: center;
}
.cid-tGyPD8oVkh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tGyPD8oVkh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tGyPD8oVkh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tGyPD8oVkh H5 {
  color: #f47a35;
  text-align: center;
}
.cid-tGyPD8oVkh .copyright {
  text-align: center;
  color: #f47a35;
}
.cid-tGyPD8oVkh .mbr-section-subtitle {
  color: #f47a35;
}
.cid-tGyPD8oVkh .list P {
  text-align: center;
}
