body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #9600ff !important;
}
.bg-success {
  background-color: #000032 !important;
}
.bg-info {
  background-color: #820ad1 !important;
}
.bg-warning {
  background-color: #4c0677 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #9600ff !important;
  border-color: #9600ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #6300a8 !important;
  border-color: #6300a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6300a8 !important;
  border-color: #6300a8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4e4a4d !important;
  border-color: #4e4a4d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #222021 !important;
  border-color: #222021 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #222021 !important;
  border-color: #222021 !important;
}
.btn-info,
.btn-info:active {
  background-color: #820ad1 !important;
  border-color: #820ad1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #4f067e !important;
  border-color: #4f067e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4f067e !important;
  border-color: #4f067e !important;
}
.btn-success,
.btn-success:active {
  background-color: #000032 !important;
  border-color: #000032 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4c0677 !important;
  border-color: #4c0677 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #170224 !important;
  border-color: #170224 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #170224 !important;
  border-color: #170224 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9600ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6300a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9600ff !important;
  border-color: #9600ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4e4a4d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #222021 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4e4a4d !important;
  border-color: #4e4a4d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #820ad1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4f067e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #820ad1 !important;
  border-color: #820ad1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000032;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000032 !important;
  border-color: #000032 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4c0677;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #170224 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4c0677 !important;
  border-color: #4c0677 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #9600ff !important;
}
.text-secondary {
  color: #4e4a4d !important;
}
.text-success {
  color: #000032 !important;
}
.text-info {
  color: #820ad1 !important;
}
.text-warning {
  color: #4c0677 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #5a0099 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1a1819 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #450570 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #0e0116 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #9600ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #820ad1;
}
.alert-warning {
  background-color: #4c0677;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9600ff;
  border-color: #9600ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #9600ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eaccff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #9898ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dcacfb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9a0cf0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #9600ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #9600ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #9600ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #9600ff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #9600ff;
  border-bottom-color: #9600ff;
}
.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: #9600ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #4e4a4d !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%239600ff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tJKFEIWEUE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJKFEIWEUE nav.navbar {
  position: fixed;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJKFEIWEUE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJKFEIWEUE .dropdown-item:hover,
.cid-tJKFEIWEUE .dropdown-item:focus {
  background: #9600ff !important;
  color: white !important;
}
.cid-tJKFEIWEUE .dropdown-item:hover span {
  color: white;
}
.cid-tJKFEIWEUE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJKFEIWEUE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJKFEIWEUE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJKFEIWEUE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJKFEIWEUE .nav-link {
  position: relative;
}
.cid-tJKFEIWEUE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJKFEIWEUE .container {
    flex-wrap: nowrap;
  }
}
.cid-tJKFEIWEUE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJKFEIWEUE .dropdown-menu,
.cid-tJKFEIWEUE .navbar.opened {
  background: #ffffff !important;
}
.cid-tJKFEIWEUE .nav-item:focus,
.cid-tJKFEIWEUE .nav-link:focus {
  outline: none;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJKFEIWEUE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJKFEIWEUE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJKFEIWEUE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tJKFEIWEUE .navbar.opened {
  transition: all 0.3s;
}
.cid-tJKFEIWEUE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJKFEIWEUE .navbar .navbar-logo img {
  width: auto;
}
.cid-tJKFEIWEUE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJKFEIWEUE .navbar.collapsed {
  justify-content: center;
}
.cid-tJKFEIWEUE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJKFEIWEUE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJKFEIWEUE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJKFEIWEUE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJKFEIWEUE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJKFEIWEUE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJKFEIWEUE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJKFEIWEUE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJKFEIWEUE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJKFEIWEUE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJKFEIWEUE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJKFEIWEUE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJKFEIWEUE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJKFEIWEUE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJKFEIWEUE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJKFEIWEUE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJKFEIWEUE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJKFEIWEUE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJKFEIWEUE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJKFEIWEUE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJKFEIWEUE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJKFEIWEUE .dropdown-item.active,
.cid-tJKFEIWEUE .dropdown-item:active {
  background-color: transparent;
}
.cid-tJKFEIWEUE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJKFEIWEUE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJKFEIWEUE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJKFEIWEUE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJKFEIWEUE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJKFEIWEUE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJKFEIWEUE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJKFEIWEUE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJKFEIWEUE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000032;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJKFEIWEUE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar {
    height: 70px;
  }
  .cid-tJKFEIWEUE .navbar.opened {
    height: auto;
  }
  .cid-tJKFEIWEUE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKYDAh5zBi {
  background-image: url("../../../assets/images/home-seta-tech-4.jpg");
}
.cid-tKYDAh5zBi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKYDAh5zBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKYDAh5zBi .mbr-section-title {
  color: #9600ff;
  text-align: center;
}
.cid-tKYDAh5zBi .mbr-text,
.cid-tKYDAh5zBi .mbr-section-btn {
  color: #000032;
  text-align: center;
}
.cid-tJKG5qdNrn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bg-branco.jpg");
}
.cid-tJKG5qdNrn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJKG5qdNrn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJKG5qdNrn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tJKG5qdNrn .row {
    flex-direction: column-reverse;
  }
  .cid-tJKG5qdNrn .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tJKG5qdNrn .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tJKG5qdNrn .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tJKG5qdNrn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tJKG5qdNrn .card-title {
  color: #9600ff;
}
.cid-tJKG5qdNrn .mbr-text,
.cid-tJKG5qdNrn .mbr-section-btn {
  color: #000032;
}
.cid-tJKG1AB8HU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tJKG1AB8HU .mbr-overlay {
  background: #4c0677;
  opacity: 0.8;
}
.cid-tJKG1AB8HU img,
.cid-tJKG1AB8HU .item-img {
  width: 100%;
}
.cid-tJKG1AB8HU .item:focus,
.cid-tJKG1AB8HU span:focus {
  outline: none;
}
.cid-tJKG1AB8HU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJKG1AB8HU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJKG1AB8HU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tJKG1AB8HU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJKG1AB8HU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tJKG1AB8HU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tJKG1AB8HU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJKG1AB8HU .mbr-section-title {
  color: #ffffff;
}
.cid-tJKG1AB8HU .mbr-text,
.cid-tJKG1AB8HU .mbr-section-btn {
  text-align: center;
  color: #000032;
}
.cid-tJKG1AB8HU .item-title {
  text-align: center;
  color: #9600ff;
}
.cid-tJKG1AB8HU .item-subtitle {
  text-align: left;
}
.cid-tKkk5Q9Xs0 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tKkk5Q9Xs0 img,
.cid-tKkk5Q9Xs0 .item-img {
  width: 100%;
}
.cid-tKkk5Q9Xs0 .item:focus,
.cid-tKkk5Q9Xs0 span:focus {
  outline: none;
}
.cid-tKkk5Q9Xs0 .item-wrapper {
  position: relative;
}
.cid-tKkk5Q9Xs0 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKkk5Q9Xs0 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKkk5Q9Xs0 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tKkk5Q9Xs0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKkk5Q9Xs0 .mbr-section-title {
  color: #9600ff;
}
.cid-tKkk5Q9Xs0 .mbr-text,
.cid-tKkk5Q9Xs0 .mbr-section-btn {
  text-align: left;
}
.cid-tKkk5Q9Xs0 .item-title {
  text-align: left;
}
.cid-tKkk5Q9Xs0 .item-subtitle {
  text-align: left;
}
.cid-tKkk5Q9Xs0 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tKkk5Q9Xs0 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tKkk5Q9Xs0 .embla__button--next,
.cid-tKkk5Q9Xs0 .embla__button--prev {
  display: flex;
}
.cid-tKkk5Q9Xs0 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tKkk5Q9Xs0 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tKkk5Q9Xs0 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tKkk5Q9Xs0 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tKkk5Q9Xs0 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tKkk5Q9Xs0 .embla__button {
    top: auto;
  }
}
.cid-tKkk5Q9Xs0 .embla {
  position: relative;
  width: 100%;
}
.cid-tKkk5Q9Xs0 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tKkk5Q9Xs0 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tKkk5Q9Xs0 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tKkk5Q9Xs0 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tLTVADj0di {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLTVADj0di .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLTVADj0di .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLTVADj0di .mbr-section-title {
  color: #9600ff;
}
#custom-html-2t {
  /* Type valid CSS here */
}
#custom-html-2t div {
  padding: 0px 0;
  color: #777;
  text-align: center;
}
#custom-html-2t p {
  font-size: 60px;
  color: #777;
}
#custom-html-2v {
  /* Type valid CSS here */
}
#custom-html-2v div {
  padding: 40px 0;
  color: #777;
  text-align: center;
}
#custom-html-2v p {
  font-size: 60px;
  color: #777;
}
.cid-tLd5mhT2UC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000032;
}
.cid-tLd5mhT2UC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLd5mhT2UC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLd5mhT2UC .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tLd5mhT2UC .row {
    text-align: center;
  }
  .cid-tLd5mhT2UC .row > div {
    margin: auto;
  }
  .cid-tLd5mhT2UC .social-row {
    justify-content: center;
  }
}
.cid-tLd5mhT2UC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tLd5mhT2UC .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLd5mhT2UC .list {
    margin-bottom: 0rem;
  }
}
.cid-tLd5mhT2UC .mbr-text {
  color: #ffffff;
}
.cid-tLd5mhT2UC .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-tLd5mhT2UC .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tLd5mhT2UC .copyright {
  color: #ffffff;
}
.cid-tLd5mhT2UC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tJKFEIWEUE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJKFEIWEUE nav.navbar {
  position: fixed;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJKFEIWEUE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJKFEIWEUE .dropdown-item:hover,
.cid-tJKFEIWEUE .dropdown-item:focus {
  background: #9600ff !important;
  color: white !important;
}
.cid-tJKFEIWEUE .dropdown-item:hover span {
  color: white;
}
.cid-tJKFEIWEUE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJKFEIWEUE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJKFEIWEUE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJKFEIWEUE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJKFEIWEUE .nav-link {
  position: relative;
}
.cid-tJKFEIWEUE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJKFEIWEUE .container {
    flex-wrap: nowrap;
  }
}
.cid-tJKFEIWEUE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJKFEIWEUE .dropdown-menu,
.cid-tJKFEIWEUE .navbar.opened {
  background: #ffffff !important;
}
.cid-tJKFEIWEUE .nav-item:focus,
.cid-tJKFEIWEUE .nav-link:focus {
  outline: none;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJKFEIWEUE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJKFEIWEUE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJKFEIWEUE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJKFEIWEUE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tJKFEIWEUE .navbar.opened {
  transition: all 0.3s;
}
.cid-tJKFEIWEUE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJKFEIWEUE .navbar .navbar-logo img {
  width: auto;
}
.cid-tJKFEIWEUE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJKFEIWEUE .navbar.collapsed {
  justify-content: center;
}
.cid-tJKFEIWEUE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJKFEIWEUE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJKFEIWEUE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJKFEIWEUE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJKFEIWEUE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJKFEIWEUE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJKFEIWEUE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJKFEIWEUE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJKFEIWEUE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJKFEIWEUE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJKFEIWEUE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJKFEIWEUE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJKFEIWEUE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJKFEIWEUE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJKFEIWEUE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJKFEIWEUE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJKFEIWEUE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJKFEIWEUE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJKFEIWEUE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJKFEIWEUE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJKFEIWEUE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJKFEIWEUE .dropdown-item.active,
.cid-tJKFEIWEUE .dropdown-item:active {
  background-color: transparent;
}
.cid-tJKFEIWEUE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJKFEIWEUE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJKFEIWEUE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJKFEIWEUE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJKFEIWEUE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJKFEIWEUE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJKFEIWEUE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJKFEIWEUE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJKFEIWEUE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000032;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJKFEIWEUE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJKFEIWEUE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJKFEIWEUE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJKFEIWEUE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJKFEIWEUE .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-tJKFEIWEUE .navbar {
    height: 70px;
  }
  .cid-tJKFEIWEUE .navbar.opened {
    height: auto;
  }
  .cid-tJKFEIWEUE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKZgjgwDPS {
  background-image: url("../../../assets/images/pabx-3.jpg");
}
.cid-tKZgjgwDPS .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-tKZgjgwDPS .mbr-overlay {
  background: #9600ff;
  background: linear-gradient(#9600ff -10%, #4c0677 75%);
}
.cid-tKZgjgwDPS .mbr-section-title {
  margin: 0;
}
.cid-tKZgjgwDPS .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-tKYSVztE3t {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tKYSVztE3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKYSVztE3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKYSVztE3t .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tKYSVztE3t .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tKYSVztE3t .mbr-section-title {
  color: #9600ff;
}
.cid-tKYSVztE3t .mbr-text,
.cid-tKYSVztE3t .mbr-section-btn {
  color: #000032;
}
.cid-tKYYuhoNza {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bg-branco.jpg");
}
.cid-tKYYuhoNza .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKYYuhoNza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKYYuhoNza .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tKYYuhoNza .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKYYuhoNza .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tKYYuhoNza .mbr-section-title {
  text-align: left;
  color: #9600ff;
}
.cid-tKYYuhoNza .mbr-text,
.cid-tKYYuhoNza .mbr-section-btn {
  text-align: left;
  color: #000032;
}
.cid-tKZ1c9JtRR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pabx-bg-3.jpg");
}
.cid-tKZ1c9JtRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKZ1c9JtRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKZ1c9JtRR .row {
  flex-direction: row-reverse;
}
.cid-tKZ1c9JtRR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tKZ1c9JtRR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKZ1c9JtRR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tKZ1c9JtRR .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tKZ1c9JtRR .mbr-text,
.cid-tKZ1c9JtRR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tKZ1X6XH2i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efefef;
}
.cid-tKZ1X6XH2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKZ1X6XH2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKZ1X6XH2i .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tKZ1X6XH2i .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKZ1X6XH2i .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tKZ1X6XH2i .mbr-section-title DIV {
  text-align: left;
}
.cid-tKZ1X6XH2i .mbr-section-title {
  text-align: left;
  color: #9600ff;
}
.cid-tKZ1X6XH2i .mbr-text,
.cid-tKZ1X6XH2i .mbr-section-btn {
  text-align: left;
  color: #000032;
}
.cid-tKZ2vIekxY {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #071e2e;
}
.cid-tKZ2vIekxY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKZ2vIekxY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKZ2vIekxY .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tKZ2vIekxY .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-tKZ2vIekxY .mbr-section-title {
  color: #9600ff;
}
.cid-tKZ2vIekxY .mbr-text,
.cid-tKZ2vIekxY .mbr-section-btn {
  color: #ffffff;
}
.cid-tKZ4uXTFMS {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tKZ4uXTFMS img,
.cid-tKZ4uXTFMS .item-img {
  width: 100%;
}
.cid-tKZ4uXTFMS .item:focus,
.cid-tKZ4uXTFMS span:focus {
  outline: none;
}
.cid-tKZ4uXTFMS .item-wrapper {
  position: relative;
}
.cid-tKZ4uXTFMS .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKZ4uXTFMS .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKZ4uXTFMS .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tKZ4uXTFMS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKZ4uXTFMS .mbr-section-title {
  color: #9600ff;
}
.cid-tKZ4uXTFMS .mbr-text,
.cid-tKZ4uXTFMS .mbr-section-btn {
  text-align: left;
}
.cid-tKZ4uXTFMS .item-title {
  text-align: left;
}
.cid-tKZ4uXTFMS .item-subtitle {
  text-align: left;
}
.cid-tKZ4uXTFMS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tKZ4uXTFMS .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tKZ4uXTFMS .embla__button--next,
.cid-tKZ4uXTFMS .embla__button--prev {
  display: flex;
}
.cid-tKZ4uXTFMS .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tKZ4uXTFMS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tKZ4uXTFMS .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tKZ4uXTFMS .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tKZ4uXTFMS .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tKZ4uXTFMS .embla__button {
    top: auto;
  }
}
.cid-tKZ4uXTFMS .embla {
  position: relative;
  width: 100%;
}
.cid-tKZ4uXTFMS .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tKZ4uXTFMS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tKZ4uXTFMS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tKZ4uXTFMS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tKZ5VbqNak {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tKZ5VbqNak .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKZ5VbqNak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tKZ5VbqNak .container {
    max-width: 1400px;
  }
}
.cid-tKZ5VbqNak .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tKZ5VbqNak .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZ5VbqNak .row {
  justify-content: center;
}
.cid-tKZ5VbqNak .card-text {
  text-align: left;
  color: #000032;
}
.cid-tKZ7d8hKxX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/pabx-suporte.jpg");
  border-radius: 10px;
}
.cid-tKZ7d8hKxX .mbr-section-subtitle {
  letter-spacing: .2rem;
  border-radius: 10px;
}
.cid-tKZ7d8hKxX .media-container-column {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tKZ7d8hKxX .media-container-column {
    padding: 1rem;
    border-radius: 10px;
  }
}
.cid-tKZ7d8hKxX SPAN {
  color: #26aae0;
  opacity: 85%;
}
.cid-tKZ7d8hKxX H1 {
  color: #9600ff;
}
.cid-tKZ7d8hKxX .mbr-text,
.cid-tKZ7d8hKxX .mbr-section-btn {
  color: #000032;
}
.cid-tKZithOjs3 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tKZithOjs3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKZithOjs3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKZithOjs3 .mbr-section-title {
  color: #9600ff;
}
.cid-tKZithOjs3 .mbr-section-subtitle {
  color: #000032;
}
.cid-tLd5mhT2UC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000032;
}
.cid-tLd5mhT2UC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLd5mhT2UC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLd5mhT2UC .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tLd5mhT2UC .row {
    text-align: center;
  }
  .cid-tLd5mhT2UC .row > div {
    margin: auto;
  }
  .cid-tLd5mhT2UC .social-row {
    justify-content: center;
  }
}
.cid-tLd5mhT2UC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tLd5mhT2UC .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLd5mhT2UC .list {
    margin-bottom: 0rem;
  }
}
.cid-tLd5mhT2UC .mbr-text {
  color: #ffffff;
}
.cid-tLd5mhT2UC .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-tLd5mhT2UC .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tLd5mhT2UC .copyright {
  color: #ffffff;
}
.cid-tLd5mhT2UC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tL1WllesJE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tL1WllesJE nav.navbar {
  position: fixed;
}
.cid-tL1WllesJE .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-tL1WllesJE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tL1WllesJE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tL1WllesJE .dropdown-item:hover,
.cid-tL1WllesJE .dropdown-item:focus {
  background: #9600ff !important;
  color: white !important;
}
.cid-tL1WllesJE .dropdown-item:hover span {
  color: white;
}
.cid-tL1WllesJE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tL1WllesJE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tL1WllesJE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tL1WllesJE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tL1WllesJE .nav-link {
  position: relative;
}
.cid-tL1WllesJE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tL1WllesJE .container {
    flex-wrap: nowrap;
  }
}
.cid-tL1WllesJE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tL1WllesJE .dropdown-menu,
.cid-tL1WllesJE .navbar.opened {
  background: #ffffff !important;
}
.cid-tL1WllesJE .nav-item:focus,
.cid-tL1WllesJE .nav-link:focus {
  outline: none;
}
.cid-tL1WllesJE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tL1WllesJE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tL1WllesJE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tL1WllesJE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tL1WllesJE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tL1WllesJE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tL1WllesJE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tL1WllesJE .navbar.opened {
  transition: all 0.3s;
}
.cid-tL1WllesJE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tL1WllesJE .navbar .navbar-logo img {
  width: auto;
}
.cid-tL1WllesJE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tL1WllesJE .navbar.collapsed {
  justify-content: center;
}
.cid-tL1WllesJE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tL1WllesJE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tL1WllesJE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tL1WllesJE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tL1WllesJE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tL1WllesJE .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-tL1WllesJE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tL1WllesJE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tL1WllesJE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tL1WllesJE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tL1WllesJE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tL1WllesJE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tL1WllesJE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tL1WllesJE .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-tL1WllesJE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tL1WllesJE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tL1WllesJE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tL1WllesJE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tL1WllesJE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tL1WllesJE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tL1WllesJE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tL1WllesJE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tL1WllesJE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tL1WllesJE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tL1WllesJE .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-tL1WllesJE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tL1WllesJE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tL1WllesJE .dropdown-item.active,
.cid-tL1WllesJE .dropdown-item:active {
  background-color: transparent;
}
.cid-tL1WllesJE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tL1WllesJE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tL1WllesJE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tL1WllesJE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tL1WllesJE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tL1WllesJE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tL1WllesJE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tL1WllesJE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tL1WllesJE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tL1WllesJE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000032;
}
.cid-tL1WllesJE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tL1WllesJE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL1WllesJE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL1WllesJE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tL1WllesJE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL1WllesJE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tL1WllesJE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tL1WllesJE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL1WllesJE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tL1WllesJE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tL1WllesJE .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-tL1WllesJE .navbar {
    height: 70px;
  }
  .cid-tL1WllesJE .navbar.opened {
    height: auto;
  }
  .cid-tL1WllesJE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tL1Wlm4qI2 {
  background-image: url("../../../assets/images/desk.jpg");
}
.cid-tL1Wlm4qI2 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-tL1Wlm4qI2 .mbr-overlay {
  background: #9600ff;
  background: linear-gradient(#9600ff -10%, #4c0677 75%);
}
.cid-tL1Wlm4qI2 .mbr-section-title {
  margin: 0;
}
.cid-tL1Wlm4qI2 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-tL1WlnaqIJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bg-branco.jpg");
}
.cid-tL1WlnaqIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL1WlnaqIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL1WlnaqIJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tL1WlnaqIJ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tL1WlnaqIJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tL1WlnaqIJ .mbr-section-title {
  text-align: left;
  color: #9600ff;
}
.cid-tL1WlnaqIJ .mbr-text,
.cid-tL1WlnaqIJ .mbr-section-btn {
  text-align: left;
  color: #000032;
}
.cid-tLdDoZ9MmW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLdDoZ9MmW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLdDoZ9MmW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tLdDoZ9MmW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tLdDoZ9MmW .row {
  flex-direction: row-reverse;
}
.cid-tLdDoZ9MmW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tLdDoZ9MmW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLdDoZ9MmW .mbr-section-title {
  color: #9600ff;
}
.cid-tLdDoZ9MmW .mbr-text {
  color: #000032;
}
.cid-tLdLshLyRW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLdLshLyRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLdLshLyRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tLdLshLyRW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tLdLshLyRW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tLdLshLyRW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLdLshLyRW .mbr-section-title {
  color: #9600ff;
}
.cid-tLdLshLyRW .mbr-text {
  color: #000032;
}
.cid-tLdKKpY28R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLdKKpY28R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLdKKpY28R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tLdKKpY28R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tLdKKpY28R .row {
  flex-direction: row-reverse;
}
.cid-tLdKKpY28R img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tLdKKpY28R .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLdKKpY28R .mbr-section-title {
  color: #9600ff;
}
.cid-tLdLuoBxQR {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tLdLuoBxQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLdLuoBxQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tLdLuoBxQR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tLdLuoBxQR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tLdLuoBxQR .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLdLuoBxQR .mbr-section-title {
  color: #9600ff;
}
.cid-tL1WlnE6EC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pabx-bg-3.jpg");
}
.cid-tL1WlnE6EC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL1WlnE6EC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL1WlnE6EC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tL1WlnE6EC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tL1WlnE6EC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tL1WlnE6EC .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tL1WlnE6EC .mbr-text,
.cid-tL1WlnE6EC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tL1WlrRl2S {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tL1WlrRl2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL1WlrRl2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tL1WlrRl2S .mbr-section-title {
  color: #9600ff;
}
.cid-tL1WlrRl2S .mbr-section-subtitle {
  color: #000032;
}
.cid-tLd5mhT2UC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000032;
}
.cid-tLd5mhT2UC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLd5mhT2UC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLd5mhT2UC .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tLd5mhT2UC .row {
    text-align: center;
  }
  .cid-tLd5mhT2UC .row > div {
    margin: auto;
  }
  .cid-tLd5mhT2UC .social-row {
    justify-content: center;
  }
}
.cid-tLd5mhT2UC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tLd5mhT2UC .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLd5mhT2UC .list {
    margin-bottom: 0rem;
  }
}
.cid-tLd5mhT2UC .mbr-text {
  color: #ffffff;
}
.cid-tLd5mhT2UC .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-tLd5mhT2UC .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tLd5mhT2UC div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tLd5mhT2UC .copyright {
  color: #ffffff;
}
.cid-tLd5mhT2UC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLey6baWH9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLey6baWH9 nav.navbar {
  position: fixed;
}
.cid-tLey6baWH9 .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-tLey6baWH9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLey6baWH9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLey6baWH9 .dropdown-item:hover,
.cid-tLey6baWH9 .dropdown-item:focus {
  background: #9600ff !important;
  color: white !important;
}
.cid-tLey6baWH9 .dropdown-item:hover span {
  color: white;
}
.cid-tLey6baWH9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLey6baWH9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLey6baWH9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLey6baWH9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLey6baWH9 .nav-link {
  position: relative;
}
.cid-tLey6baWH9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLey6baWH9 .container {
    flex-wrap: nowrap;
  }
}
.cid-tLey6baWH9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLey6baWH9 .dropdown-menu,
.cid-tLey6baWH9 .navbar.opened {
  background: #ffffff !important;
}
.cid-tLey6baWH9 .nav-item:focus,
.cid-tLey6baWH9 .nav-link:focus {
  outline: none;
}
.cid-tLey6baWH9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLey6baWH9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLey6baWH9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLey6baWH9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLey6baWH9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLey6baWH9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLey6baWH9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tLey6baWH9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tLey6baWH9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLey6baWH9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tLey6baWH9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLey6baWH9 .navbar.collapsed {
  justify-content: center;
}
.cid-tLey6baWH9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLey6baWH9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLey6baWH9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLey6baWH9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLey6baWH9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLey6baWH9 .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-tLey6baWH9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLey6baWH9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLey6baWH9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLey6baWH9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLey6baWH9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLey6baWH9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLey6baWH9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLey6baWH9 .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-tLey6baWH9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLey6baWH9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLey6baWH9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLey6baWH9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLey6baWH9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLey6baWH9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLey6baWH9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLey6baWH9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLey6baWH9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLey6baWH9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLey6baWH9 .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-tLey6baWH9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLey6baWH9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLey6baWH9 .dropdown-item.active,
.cid-tLey6baWH9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLey6baWH9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLey6baWH9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLey6baWH9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLey6baWH9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLey6baWH9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLey6baWH9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLey6baWH9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLey6baWH9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLey6baWH9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLey6baWH9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000032;
}
.cid-tLey6baWH9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLey6baWH9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLey6baWH9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLey6baWH9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLey6baWH9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLey6baWH9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLey6baWH9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLey6baWH9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLey6baWH9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLey6baWH9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLey6baWH9 .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-tLey6baWH9 .navbar {
    height: 70px;
  }
  .cid-tLey6baWH9 .navbar.opened {
    height: auto;
  }
  .cid-tLey6baWH9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLey6cby83 {
  background-image: url("../../../assets/images/bot-1.jpg");
}
.cid-tLey6cby83 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-tLey6cby83 .mbr-overlay {
  background: #9600ff;
  background: linear-gradient(#9600ff -10%, #4c0677 75%);
}
.cid-tLey6cby83 .mbr-section-title {
  margin: 0;
}
.cid-tLey6cby83 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-tLey6cO4Ba {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bg-branco.jpg");
}
.cid-tLey6cO4Ba .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLey6cO4Ba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLey6cO4Ba .row {
  flex-direction: row-reverse;
}
.cid-tLey6cO4Ba .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tLey6cO4Ba .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tLey6cO4Ba .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tLey6cO4Ba .mbr-section-title {
  text-align: left;
  color: #9600ff;
}
.cid-tLey6cO4Ba .mbr-text,
.cid-tLey6cO4Ba .mbr-section-btn {
  text-align: left;
  color: #000032;
}
.cid-tLf3QqQOS8 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLf3QqQOS8 .mbr-section-title {
  color: #9600ff;
}
.cid-tLf3QqQOS8 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tLf3QqQOS8 .mbr-text {
  color: #8d97ad;
}
.cid-tLf3QqQOS8 .nav {
  border: none;
}
.cid-tLf3QqQOS8 .nav-tabs {
  width: 100%;
}
.cid-tLf3QqQOS8 .nav-tabs .nav-item {
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tLf3QqQOS8 .card-img {
  overflow: hidden;
  border-radius: .25rem;
}
.cid-tLf3QqQOS8 .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #fafafa;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-tLf3QqQOS8 .nav-tabs .nav-link:hover {
  background-color: #9600ff;
  color: #ffffff;
}
.cid-tLf3QqQOS8 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #9600ff;
}
.cid-tLf3QqQOS8 .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 500px) {
  .cid-tLf3QqQOS8 .nav-item {
    display: table-row !important;
  }
}
.cid-tLf3QqQOS8 .mbr-text,
.cid-tLf3QqQOS8 .mbr-section-btn {
  color: #000032;
  text-align: center;
}
.cid-tLeXXaK5mr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tLeXXaK5mr .mbr-overlay {
  background: #9600ff;
  opacity: 0.8;
}
.cid-tLeXXaK5mr img,
.cid-tLeXXaK5mr .item-img {
  width: 100%;
}
.cid-tLeXXaK5mr .item:focus,
.cid-tLeXXaK5mr span:focus {
  outline: none;
}
.cid-tLeXXaK5mr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tLeXXaK5mr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLeXXaK5mr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLeXXaK5mr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tLeXXaK5mr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLeXXaK5mr .mbr-section-title {
  color: #ffffff;
}
.cid-tLeXXaK5mr .mbr-text,
.cid-tLeXXaK5mr .mbr-section-btn {
  text-align: center;
}
.cid-tLeXXaK5mr .item-title {
  text-align: center;
  color: #9600ff;
}
.cid-tLeXXaK5mr .item-subtitle {
  text-align: left;
}
.cid-tLeXXaK5mr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLeA5tFT9q {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tLeA5tFT9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLeA5tFT9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tLeA5tFT9q .container {
    max-width: 1400px;
  }
}
.cid-tLeA5tFT9q .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #9600ff;
  margin-bottom: 2rem;
}
.cid-tLeA5tFT9q .card-wrapper {
  margin-top: 3rem;
}
.cid-tLeA5tFT9q .row {
  justify-content: center;
}
.cid-tLeA5tFT9q .mbr-section-title {
  color: #9600ff;
}
.cid-tLeA5tFT9q .mbr-section-subtitle {
  color: #000032;
}
.cid-tLeA5tFT9q .card-text {
  color: #000032;
}
.cid-tLeA5tFT9q .card-title,
.cid-tLeA5tFT9q .iconfont-wrapper {
  color: #9600ff;
}
.cid-tLeAvkpYOi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tLeAvkpYOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLeAvkpYOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tLeAvkpYOi .container {
    max-width: 1400px;
  }
}
.cid-tLeAvkpYOi .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #9600ff;
  margin-bottom: 2rem;
}
.cid-tLeAvkpYOi .card-wrapper {
  margin-top: 3rem;
}
.cid-tLeAvkpYOi .row {
  justify-content: center;
}
.cid-tLeAvkpYOi .card-title,
.cid-tLeAvkpYOi .iconfont-wrapper {
  color: #9600ff;
}
.cid-tLeAvkpYOi .card-text {
  color: #000032;
}
.cid-tLeANG9bE0 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLeANG9bE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLeANG9bE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tLeANG9bE0 .container {
    max-width: 1400px;
  }
}
.cid-tLeANG9bE0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #9600ff;
  margin-bottom: 2rem;
}
.cid-tLeANG9bE0 .card-wrapper {
  margin-top: 3rem;
}
.cid-tLeANG9bE0 .row {
  justify-content: center;
}
.cid-tLeANG9bE0 .card-title,
.cid-tLeANG9bE0 .iconfont-wrapper {
  color: #9600ff;
}
.cid-tLeANG9bE0 .card-text {
  color: #000032;
}
.cid-tLey6fnqTL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pabx-bg-3.jpg");
}
.cid-tLey6fnqTL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLey6fnqTL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLey6fnqTL .row {
  flex-direction: row-reverse;
}
.cid-tLey6fnqTL .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tLey6fnqTL .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tLey6fnqTL .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tLey6fnqTL .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLey6fnqTL .mbr-text,
.cid-tLey6fnqTL .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLey6fSSwO {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tLey6fSSwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLey6fSSwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLey6fSSwO .mbr-section-title {
  color: #9600ff;
}
.cid-tLey6fSSwO .mbr-section-subtitle {
  color: #000032;
}
.cid-tLey6gmEEd {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000032;
}
.cid-tLey6gmEEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLey6gmEEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLey6gmEEd .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tLey6gmEEd .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tLey6gmEEd .row {
    text-align: center;
  }
  .cid-tLey6gmEEd .row > div {
    margin: auto;
  }
  .cid-tLey6gmEEd .social-row {
    justify-content: center;
  }
}
.cid-tLey6gmEEd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tLey6gmEEd .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tLey6gmEEd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLey6gmEEd .list {
    margin-bottom: 0rem;
  }
}
.cid-tLey6gmEEd .mbr-text {
  color: #ffffff;
}
.cid-tLey6gmEEd .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-tLey6gmEEd .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tLey6gmEEd div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tLey6gmEEd .copyright {
  color: #ffffff;
}
.cid-tLey6gmEEd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLTY7AAM5y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLTY7AAM5y nav.navbar {
  position: fixed;
}
.cid-tLTY7AAM5y .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-tLTY7AAM5y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLTY7AAM5y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLTY7AAM5y .dropdown-item:hover,
.cid-tLTY7AAM5y .dropdown-item:focus {
  background: #9600ff !important;
  color: white !important;
}
.cid-tLTY7AAM5y .dropdown-item:hover span {
  color: white;
}
.cid-tLTY7AAM5y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLTY7AAM5y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLTY7AAM5y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLTY7AAM5y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLTY7AAM5y .nav-link {
  position: relative;
}
.cid-tLTY7AAM5y .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tLTY7AAM5y .container {
    flex-wrap: nowrap;
  }
}
.cid-tLTY7AAM5y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLTY7AAM5y .dropdown-menu,
.cid-tLTY7AAM5y .navbar.opened {
  background: #ffffff !important;
}
.cid-tLTY7AAM5y .nav-item:focus,
.cid-tLTY7AAM5y .nav-link:focus {
  outline: none;
}
.cid-tLTY7AAM5y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLTY7AAM5y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLTY7AAM5y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLTY7AAM5y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLTY7AAM5y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLTY7AAM5y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLTY7AAM5y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tLTY7AAM5y .navbar.opened {
  transition: all 0.3s;
}
.cid-tLTY7AAM5y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLTY7AAM5y .navbar .navbar-logo img {
  width: auto;
}
.cid-tLTY7AAM5y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLTY7AAM5y .navbar.collapsed {
  justify-content: center;
}
.cid-tLTY7AAM5y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLTY7AAM5y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLTY7AAM5y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tLTY7AAM5y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLTY7AAM5y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLTY7AAM5y .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-tLTY7AAM5y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLTY7AAM5y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLTY7AAM5y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLTY7AAM5y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLTY7AAM5y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLTY7AAM5y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLTY7AAM5y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLTY7AAM5y .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-tLTY7AAM5y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLTY7AAM5y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLTY7AAM5y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLTY7AAM5y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLTY7AAM5y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLTY7AAM5y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLTY7AAM5y .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLTY7AAM5y .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLTY7AAM5y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLTY7AAM5y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLTY7AAM5y .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-tLTY7AAM5y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLTY7AAM5y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLTY7AAM5y .dropdown-item.active,
.cid-tLTY7AAM5y .dropdown-item:active {
  background-color: transparent;
}
.cid-tLTY7AAM5y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLTY7AAM5y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLTY7AAM5y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLTY7AAM5y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLTY7AAM5y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLTY7AAM5y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLTY7AAM5y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLTY7AAM5y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLTY7AAM5y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLTY7AAM5y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000032;
}
.cid-tLTY7AAM5y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLTY7AAM5y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLTY7AAM5y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLTY7AAM5y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLTY7AAM5y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLTY7AAM5y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLTY7AAM5y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLTY7AAM5y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLTY7AAM5y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLTY7AAM5y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLTY7AAM5y .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-tLTY7AAM5y .navbar {
    height: 70px;
  }
  .cid-tLTY7AAM5y .navbar.opened {
    height: auto;
  }
  .cid-tLTY7AAM5y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLTY7ByTTZ {
  background-image: url("../../../assets/images/sip.jpg");
}
.cid-tLTY7ByTTZ .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-tLTY7ByTTZ .mbr-overlay {
  background: #9600ff;
  background: linear-gradient(#9600ff -10%, #4c0677 75%);
}
.cid-tLTY7ByTTZ .mbr-section-title {
  margin: 0;
}
.cid-tLTY7ByTTZ .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-tLTY7CfAf8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bg-branco.jpg");
}
.cid-tLTY7CfAf8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLTY7CfAf8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLTY7CfAf8 .row {
  flex-direction: row-reverse;
}
.cid-tLTY7CfAf8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tLTY7CfAf8 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tLTY7CfAf8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tLTY7CfAf8 .mbr-section-title {
  text-align: left;
  color: #9600ff;
}
.cid-tLTY7CfAf8 .mbr-text,
.cid-tLTY7CfAf8 .mbr-section-btn {
  text-align: left;
  color: #000032;
}
.cid-tLTY7EfA62 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #9600ff;
}
.cid-tLTY7EfA62 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLTY7EfA62 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tLTY7EfA62 .container {
    max-width: 1400px;
  }
}
.cid-tLTY7EfA62 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #071e2e;
  margin-bottom: 2rem;
}
.cid-tLTY7EfA62 .card-wrapper {
  margin-top: 3rem;
}
.cid-tLTY7EfA62 .row {
  justify-content: center;
}
.cid-tLTY7EfA62 .mbr-section-title {
  color: #ffffff;
}
.cid-tLTY7EfA62 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLTY7EfA62 .card-text {
  color: #ffffff;
}
.cid-tLTY7EfA62 .card-title,
.cid-tLTY7EfA62 .iconfont-wrapper {
  color: #071e2e;
}
.cid-tLTY7F0xC6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #9600ff;
}
.cid-tLTY7F0xC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLTY7F0xC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tLTY7F0xC6 .container {
    max-width: 1400px;
  }
}
.cid-tLTY7F0xC6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #071e2e;
  margin-bottom: 2rem;
}
.cid-tLTY7F0xC6 .card-wrapper {
  margin-top: 3rem;
}
.cid-tLTY7F0xC6 .row {
  justify-content: center;
}
.cid-tLTY7F0xC6 .card-title,
.cid-tLTY7F0xC6 .iconfont-wrapper {
  color: #071e2e;
}
.cid-tLTY7F0xC6 .card-text {
  color: #ffffff;
}
.cid-tLU3dipI2D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sip-pop.jpg");
}
.cid-tLU3dipI2D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLU3dipI2D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLU3dipI2D .mbr-section-title {
  color: #9600ff;
}
.cid-tLTY7H7M0X {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tLTY7H7M0X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLTY7H7M0X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLTY7H7M0X .mbr-section-title {
  color: #9600ff;
}
.cid-tLTY7H7M0X .mbr-section-subtitle {
  color: #000032;
}
.cid-tLTY7HHNL0 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000032;
}
.cid-tLTY7HHNL0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLTY7HHNL0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLTY7HHNL0 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tLTY7HHNL0 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tLTY7HHNL0 .row {
    text-align: center;
  }
  .cid-tLTY7HHNL0 .row > div {
    margin: auto;
  }
  .cid-tLTY7HHNL0 .social-row {
    justify-content: center;
  }
}
.cid-tLTY7HHNL0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tLTY7HHNL0 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tLTY7HHNL0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLTY7HHNL0 .list {
    margin-bottom: 0rem;
  }
}
.cid-tLTY7HHNL0 .mbr-text {
  color: #ffffff;
}
.cid-tLTY7HHNL0 .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-tLTY7HHNL0 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tLTY7HHNL0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tLTY7HHNL0 .copyright {
  color: #ffffff;
}
.cid-tLTY7HHNL0 .mbr-section-subtitle {
  color: #ffffff;
}
