body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.3rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #00ffe7 !important;
}
.bg-info {
  background-color: #007f80 !important;
}
.bg-warning {
  background-color: #34cabc !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #007f80 !important;
  border-color: #007f80 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #003334 !important;
  border-color: #003334 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #003334 !important;
  border-color: #003334 !important;
}
.btn-success,
.btn-success:active {
  background-color: #00ffe7 !important;
  border-color: #00ffe7 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #00b3a2 !important;
  border-color: #00b3a2 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #00b3a2 !important;
  border-color: #00b3a2 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #34cabc !important;
  border-color: #34cabc !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #248d83 !important;
  border-color: #248d83 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #248d83 !important;
  border-color: #248d83 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #001a1a;
  color: #001a1a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #007f80;
  border-color: #007f80;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #007f80 !important;
  border-color: #007f80 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #00998b;
  color: #00998b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #00ffe7;
  border-color: #00ffe7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #00ffe7 !important;
  border-color: #00ffe7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #1f7971;
  color: #1f7971;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #34cabc;
  border-color: #34cabc;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #34cabc !important;
  border-color: #34cabc !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #707070;
  background-color: #efefef;
  border-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #00ffe7 !important;
}
.text-info {
  color: #007f80 !important;
}
.text-warning {
  color: #34cabc !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #00998b !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #001a1a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #1f7971 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #007f80;
}
.alert-warning {
  background-color: #34cabc;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ccfffa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #00fdff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d6f4f1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #000000;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #000000;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-sYhJbcfsbG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-sYhJbcfsbG .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-sYhJbcfsbG .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sYhJbcfsbG .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYhJbcfsbG .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sYhJbcfsbG .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYhJbcfsbG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYhJbcfsbG .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sYhJbcfsbG .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sYhJbcfsbG .navbar.collapsed.opened .navbar-collapse.show,
.cid-sYhJbcfsbG .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sYhJbcfsbG .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sYhJbcfsbG .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sYhJbcfsbG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYhJbcfsbG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYhJbcfsbG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYhJbcfsbG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYhJbcfsbG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYhJbcfsbG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYhJbcfsbG .navbar {
    flex-wrap: nowrap;
  }
  .cid-sYhJbcfsbG .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sYhJbcfsbG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYhJbcfsbG .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sYhJbcfsbG .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sYhJbcfsbG .navbar.opened .navbar-collapse.show,
  .cid-sYhJbcfsbG .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sYhJbcfsbG .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sYhJbcfsbG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYhJbcfsbG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYhJbcfsbG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYhJbcfsbG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYhJbcfsbG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYhJbcfsbG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYhJbcfsbG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sYhJbcfsbG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sYhJbcfsbG .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-sYhJbcfsbG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYhJbcfsbG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYhJbcfsbG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYhJbcfsbG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYhJbcfsbG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYhJbcfsbG .dropdown-item.active,
.cid-sYhJbcfsbG .dropdown-item:active {
  background-color: transparent;
}
.cid-sYhJbcfsbG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYhJbcfsbG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYhJbcfsbG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYhJbcfsbG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-sYhJbcfsbG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYhJbcfsbG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYhJbcfsbG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYhJbcfsbG .navbar-buttons {
  text-align: center;
}
.cid-sYhJbcfsbG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYhJbcfsbG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYhJbcfsbG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYhJbcfsbG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYhJbcfsbG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYhJbcfsbG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYhJbcfsbG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYhJbcfsbG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYhJbcfsbG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYhJbcfsbG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYhJbcfsbG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: solid 3px #007f80;
  -webkit-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
}
.cid-sYhJbcfsbG a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sYhJbcfsbG a.nav-link:focus {
  outline: none;
}
.cid-sYhJbcfsbG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYhJbcfsbG .nav-link:hover,
.cid-sYhJbcfsbG .dropdown-item:hover {
  color: #ffffff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYhJbcfsbG .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sYhJbcfsbG .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sYaIrXhM5a .modal-body .close {
  background: #1b1b1b;
}
.cid-sYaIrXhM5a .modal-body .close span {
  font-style: normal;
}
.cid-sYaIrXhM5a .carousel-inner > .active,
.cid-sYaIrXhM5a .carousel-inner > .next,
.cid-sYaIrXhM5a .carousel-inner > .prev {
  display: table;
}
.cid-sYaIrXhM5a .carousel-control .icon-next,
.cid-sYaIrXhM5a .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sYaIrXhM5a .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYaIrXhM5a .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYaIrXhM5a .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sYaIrXhM5a .boxed-slider > div {
  position: relative;
}
.cid-sYaIrXhM5a .container img {
  width: 100%;
}
.cid-sYaIrXhM5a .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sYaIrXhM5a .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sYaIrXhM5a .mbr-table-cell {
  padding: 0;
}
.cid-sYaIrXhM5a .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sYaIrXhM5a .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sYaIrXhM5a .mbr-overlay {
  z-index: 1;
}
.cid-sYaIrXhM5a .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sYaIrXhM5a .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sYaIrXhM5a .carousel-item .container {
    width: 100%;
  }
}
.cid-sYaIrXhM5a .carousel-item-next.carousel-item-left,
.cid-sYaIrXhM5a .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sYaIrXhM5a .active.carousel-item-right,
.cid-sYaIrXhM5a .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sYaIrXhM5a .active.carousel-item-left,
.cid-sYaIrXhM5a .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sYaIrXhM5a .mbr-slider .carousel-control {
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sYaIrXhM5a .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYaIrXhM5a .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYaIrXhM5a .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-sYaIrXhM5a .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYaIrXhM5a .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sYaIrXhM5a .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sYaIrXhM5a .mbr-slider .carousel-indicators li.active,
.cid-sYaIrXhM5a .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sYaIrXhM5a .mbr-slider .carousel-indicators li::after,
.cid-sYaIrXhM5a .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sYaIrXhM5a .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sYaIrXhM5a .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sYaIrXhM5a .mbr-slider > .container img {
  width: 100%;
}
.cid-sYaIrXhM5a .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sYaIrXhM5a .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sYaIrXhM5a .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYaIrXhM5a .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sYaIrXhM5a .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sYaIrXhM5a .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sYaIrXhM5a .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sYaIrXhM5a .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sYaIrXhM5a .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sYaIrXhM5a .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sYaIrXhM5a .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sYaIrXhM5a .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sYaIrXhM5a .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sYaIrXhM5a H2 {
  color: #ffffff;
  text-shadow: black 0.08em 0.08em 0.08em;
}
.cid-sYaIrXhM5a .display-2 {
  color: #fff;
  text-shadow: black 0.1em 0.1em 0.1em;
}
.cid-sYaIrXhM5a btn {
  text-shadow: black 0.1em 0.1em 0.1em;
}
#custom-html-4v {
  /* Type valid CSS here */
}
#custom-html-4v div {
  padding: 5px 0;
  color: #777;
  text-align: center;
}
#custom-html-4v p {
  font-size: 60px;
  color: #777;
}
.cid-sZ26yypmpO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sZ26yypmpO .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZ26yypmpO .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-sZ26yypmpO .btn {
  margin-bottom: 2rem;
}
.cid-sZ26yypmpO .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-sZ26yypmpO .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sZ26yypmpO .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-sZ26yypmpO .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZ26yypmpO .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZ26yypmpO .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-sZ26yypmpO .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-sZ26yypmpO .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-sZ26yypmpO .links {
  color: #0e6bb3;
  text-align: center;
}
.cid-sZvtlyBvOi {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sZvtlyBvOi H1 {
  color: #0e6bb3;
}
.cid-sZvtlyBvOi .mbr-text,
.cid-sZvtlyBvOi .mbr-section-btn {
  color: #0e6bb3;
}
.cid-sZvtlyBvOi .img-box {
  position: relative;
}
.cid-sZvtlyBvOi .card-ico span {
  font-size: 96px;
  color: #000000;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-sZvtlyBvOi .card-ico .ico1 {
  background-color: #4249cc;
}
.cid-sZvtlyBvOi .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-sZvtlyBvOi .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-sZvtlyBvOi img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(26, 26, 26, 0.35);
}
@media (max-width: 576px) {
  .cid-sZvtlyBvOi .author-box {
    justify-content: center;
  }
  .cid-sZvtlyBvOi .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-sZvtlyBvOi .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-sZvtlyBvOi .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-sZvtlyBvOi .card-ico span {
    margin-right: 0rem;
  }
}
.cid-sZvtlyBvOi .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sZvtlyBvOi .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-sZvtlyBvOi .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-sZvtlyBvOi h3,
.cid-sZvtlyBvOi h4 {
  margin: 0;
  padding: 0;
}
.cid-sZvtlyBvOi .card-title,
.cid-sZvtlyBvOi .mbr-section-subtitle {
  color: #232323;
}
.cid-sZ25yR23oe {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZ25yR23oe H1 {
  color: #0e6bb3;
}
.cid-sZ25yR23oe .mbr-text,
.cid-sZ25yR23oe .mbr-section-btn {
  color: #0e6bb3;
}
.cid-sZ25yR23oe .img-box {
  position: relative;
}
.cid-sZ25yR23oe .card-ico span {
  font-size: 96px;
  color: #000000;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-sZ25yR23oe .card-ico .ico1 {
  background-color: #4249cc;
}
.cid-sZ25yR23oe .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-sZ25yR23oe .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-sZ25yR23oe img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(26, 26, 26, 0.35);
}
@media (max-width: 576px) {
  .cid-sZ25yR23oe .author-box {
    justify-content: center;
  }
  .cid-sZ25yR23oe .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-sZ25yR23oe .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-sZ25yR23oe .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-sZ25yR23oe .card-ico span {
    margin-right: 0rem;
  }
}
.cid-sZ25yR23oe .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sZ25yR23oe .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-sZ25yR23oe .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-sZ25yR23oe h3,
.cid-sZ25yR23oe h4 {
  margin: 0;
  padding: 0;
}
.cid-sZ25yR23oe .card-title,
.cid-sZ25yR23oe .mbr-section-subtitle {
  color: #232323;
}
.cid-sZ25yR23oe H3 {
  color: #0e6bb3;
}
.cid-sZ25y2RyS8 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sZ25y2RyS8 H1 {
  color: #0e6bb3;
}
.cid-sZ25y2RyS8 .mbr-text,
.cid-sZ25y2RyS8 .mbr-section-btn {
  color: #0e6bb3;
}
.cid-sZ25y2RyS8 .img-box {
  position: relative;
}
.cid-sZ25y2RyS8 .card-ico span {
  font-size: 96px;
  color: #000000;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-sZ25y2RyS8 .card-ico .ico1 {
  background-color: #4249cc;
}
.cid-sZ25y2RyS8 .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-sZ25y2RyS8 .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-sZ25y2RyS8 img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(26, 26, 26, 0.35);
}
@media (max-width: 576px) {
  .cid-sZ25y2RyS8 .author-box {
    justify-content: center;
  }
  .cid-sZ25y2RyS8 .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-sZ25y2RyS8 .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-sZ25y2RyS8 .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-sZ25y2RyS8 .card-ico span {
    margin-right: 0rem;
  }
}
.cid-sZ25y2RyS8 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sZ25y2RyS8 .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-sZ25y2RyS8 .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-sZ25y2RyS8 h3,
.cid-sZ25y2RyS8 h4 {
  margin: 0;
  padding: 0;
}
.cid-sZ25y2RyS8 .card-title,
.cid-sZ25y2RyS8 .mbr-section-subtitle {
  color: #232323;
}
.cid-sZ25y2RyS8 H3 {
  color: #0e6bb3;
}
.cid-t2jTbaoeIt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/imagem-25-1599x533.jpg");
}
.cid-t2jTbaoeIt .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-t2jTbaoeIt .mbr-arrow i {
  color: #ffffff !important;
}
.cid-t2jTbaoeIt .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-t2jTbaoeIt .animated-element,
.cid-t2jTbaoeIt .typed-cursor {
  color: #f1de85;
}
@media (max-width: 767px) {
  .cid-t2jTbaoeIt .typed-text {
    text-align: center;
  }
}
.cid-t2jTbaoeIt .mbr-section-title DIV {
  text-align: center;
}
.cid-t2jTbaoeIt .mbr-section-title {
  text-align: center;
}
.cid-t2jTbaoeIt .mbr-text,
.cid-t2jTbaoeIt .typed-text,
.cid-t2jTbaoeIt .mbr-section-btn {
  text-align: center;
}
.cid-sYXr01LkBT {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sYXr01LkBT .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYXr01LkBT .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-sYXr01LkBT .btn {
  margin-bottom: 2rem;
}
.cid-sYXr01LkBT .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-sYXr01LkBT .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYXr01LkBT .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-sYXr01LkBT .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYXr01LkBT .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sYXr01LkBT .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-sYXr01LkBT .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-sYXr01LkBT .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-sYXr01LkBT .links {
  color: #000000;
  text-align: center;
}
.cid-sYaIlcYnlB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-sYaIlcYnlB li {
  list-style: none;
}
.cid-sYaIlcYnlB .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-sYaIlcYnlB .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-sYaIlcYnlB h4 {
  margin: 0;
}
.cid-sYaIlcYnlB .item {
  color: #57468b;
}
.cid-sYaIlcYnlB ul {
  padding: 0;
  margin: 0;
}
.cid-sYaIlcYnlB .col-title {
  color: #57468b;
}
.cid-sYaIlcYnlB .col-title1 {
  color: #bfceff;
}
.cid-sYaIlcYnlB .col-title2 {
  color: #5580ff;
}
.cid-sYaIlcYnlB .col-title3 {
  color: #ff8a73;
}
.cid-sYaIlcYnlB .col-title4 {
  color: #57468b;
}
.cid-sYaIlcYnlB .item1 {
  color: #000000;
}
.cid-sYaIlcYnlB .item2 {
  color: #000000;
}
.cid-sYaIlcYnlB .item3 {
  color: #000000;
}
.cid-sYaIlcYnlB .item4 {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-sYaIlcYnlB .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-sZvkzegs1E {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 0;
  padding-right: 0;
  background-color: #cccccc;
}
.cid-sZvkzegs1E ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sZvkzegs1E ul li {
  padding: 1rem 0;
}
.cid-sZvkzegs1E ul li:hover {
  color: #000000;
}
.cid-sZvkzegs1E .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sZvkzegs1E .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-sZvkzegs1E .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-sZvkzegs1E .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-sZvkzegs1E .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sZvkzegs1E .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-sZvkzegs1E .map {
    height: auto;
  }
}
.cid-sZvkzegs1E .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sZvkzegs1E .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-sZvkzegs1E .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZvkzegs1E .social-list a:hover {
  opacity: 1;
}
.cid-sZvkzegs1E .row-element,
.cid-sZvkzegs1E .image-element {
  padding: 0;
}
.cid-sZvkzegs1E .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sZvkzegs1E .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sZvkzegs1E .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sZvkzegs1E .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sZvkzegs1E .text-content {
    padding: 2rem 1rem;
  }
  .cid-sZvkzegs1E .underline .line {
    height: 2px;
  }
  .cid-sZvkzegs1E .mbr-title,
  .cid-sZvkzegs1E .underline,
  .cid-sZvkzegs1E .mbr-text,
  .cid-sZvkzegs1E .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sZvkzegs1E .mbr-title,
.cid-sZvkzegs1E .underline {
  color: #ffffff;
}
.cid-sZvkzegs1E .mbr-text,
.cid-sZvkzegs1E .mbr-section-btn {
  color: #ffffff;
}
.cid-sZvkzegs1E mbr-list LI {
  color: #ffffff;
}
.cid-sZvkzegs1E mbr-list {
  text-align: center;
}
.cid-sZvkzegs1E .mbr-list,
.cid-sZvkzegs1E .social-list mbr-list {
  color: #ffffff;
}
.cid-sZvkzegs1E .social-list,
.cid-sZvkzegs1E .mbr-list {
  color: #000000;
}
.cid-sZvkzegs1E .mbr-text {
  color: #000000;
}
.cid-sYaIdeiOo5 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-sYaIdeiOo5 .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sYaIdeiOo5 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sYaIdeiOo5 .socicon {
  font-size: 1.3rem;
  background: #efefef;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYaIdeiOo5 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sYaIdeiOo5 .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-sYaIdeiOo5 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sYaIdeiOo5 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sYaIdeiOo5 .logo-title {
  text-align: center;
}
.cid-sYaIdeiOo5 .logo-sub-title {
  text-align: center;
}
.cid-sYaIdeiOo5 .links {
  text-align: center;
  color: #656565;
}
.cid-sYaIdeiOo5 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sYaIdeiOo5 .links,
.cid-sYaIdeiOo5 .social-list {
  color: #000000;
}
.cid-sYaIdeiOo5 .logo-title,
.cid-sYaIdeiOo5 .logo {
  color: #000000;
}
.cid-sYXqXAtcDK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #c1c1c1;
}
.cid-sYXqXAtcDK a:link {
  text-decoration: none;
}
.cid-sYXqXAtcDK .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sYXqXAtcDK .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sYXqXAtcDK .inner-text {
  line-height: 3em;
}
.cid-sYXqXAtcDK .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYXqXAtcDK .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sYXqXAtcDK .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sYXqXAtcDK .content-text,
.cid-sYXqXAtcDK .inner-text {
  color: #efefef;
}
.cid-sYWoZ6NmW1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-sYWoZ6NmW1 .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-sYWoZ6NmW1 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sYWoZ6NmW1 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYWoZ6NmW1 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sYWoZ6NmW1 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYWoZ6NmW1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYWoZ6NmW1 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sYWoZ6NmW1 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sYWoZ6NmW1 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sYWoZ6NmW1 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sYWoZ6NmW1 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sYWoZ6NmW1 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sYWoZ6NmW1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYWoZ6NmW1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYWoZ6NmW1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYWoZ6NmW1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYWoZ6NmW1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYWoZ6NmW1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYWoZ6NmW1 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sYWoZ6NmW1 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sYWoZ6NmW1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYWoZ6NmW1 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sYWoZ6NmW1 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sYWoZ6NmW1 .navbar.opened .navbar-collapse.show,
  .cid-sYWoZ6NmW1 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sYWoZ6NmW1 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sYWoZ6NmW1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYWoZ6NmW1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYWoZ6NmW1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYWoZ6NmW1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYWoZ6NmW1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYWoZ6NmW1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYWoZ6NmW1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sYWoZ6NmW1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sYWoZ6NmW1 .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-sYWoZ6NmW1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYWoZ6NmW1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYWoZ6NmW1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYWoZ6NmW1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYWoZ6NmW1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYWoZ6NmW1 .dropdown-item.active,
.cid-sYWoZ6NmW1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sYWoZ6NmW1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYWoZ6NmW1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYWoZ6NmW1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYWoZ6NmW1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-sYWoZ6NmW1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYWoZ6NmW1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYWoZ6NmW1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYWoZ6NmW1 .navbar-buttons {
  text-align: center;
}
.cid-sYWoZ6NmW1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYWoZ6NmW1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYWoZ6NmW1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYWoZ6NmW1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWoZ6NmW1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWoZ6NmW1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYWoZ6NmW1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWoZ6NmW1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYWoZ6NmW1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYWoZ6NmW1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWoZ6NmW1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: solid 3px #007f80;
  -webkit-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
}
.cid-sYWoZ6NmW1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sYWoZ6NmW1 a.nav-link:focus {
  outline: none;
}
.cid-sYWoZ6NmW1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYWoZ6NmW1 .nav-link:hover,
.cid-sYWoZ6NmW1 .dropdown-item:hover {
  color: #ffffff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYWoZ6NmW1 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sYWoZ6NmW1 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sYXuhn0a8H {
  overflow-x: hidden !important;
}
.cid-sYXuhn0a8H,
.cid-sYXuhn0a8H .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 90px;
}
.cid-sYXuhn0a8H .mbr-section-title {
  color: #ffffff;
}
.cid-sYXuhn0a8H .mbr-section-title span {
  color: #000000;
}
.cid-sYXuhn0a8H .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sYXuhn0a8H .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/imagem-2564-2000x334.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sYXuhn0a8H .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sYXuhn0a8H .mbr-overlay {
  z-index: 1;
}
.cid-sYXuhn0a8H .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sYWoZavJj4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sYWoZavJj4 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYWoZavJj4 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYWoZavJj4 .card-img span {
  font-size: 100px;
}
.cid-sYWoZavJj4 .mbr-text,
.cid-sYWoZavJj4 .mbr-section-btn {
  color: #0e6bb3;
}
.cid-sYWoZavJj4 .mbr-section-title,
.cid-sYWoZavJj4 .card-img {
  color: #b4924b;
}
.cid-t2jQpfzUV8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/imagem-25-1599x533.jpg");
}
.cid-t2jQpfzUV8 .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-t2jQpfzUV8 .mbr-arrow i {
  color: #ffffff !important;
}
.cid-t2jQpfzUV8 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-t2jQpfzUV8 .animated-element,
.cid-t2jQpfzUV8 .typed-cursor {
  color: #f1de85;
}
@media (max-width: 767px) {
  .cid-t2jQpfzUV8 .typed-text {
    text-align: center;
  }
}
.cid-t2jQpfzUV8 .mbr-section-title DIV {
  text-align: center;
}
.cid-t2jQpfzUV8 .mbr-section-title {
  text-align: center;
}
.cid-t2jQpfzUV8 .mbr-text,
.cid-t2jQpfzUV8 .typed-text,
.cid-t2jQpfzUV8 .mbr-section-btn {
  text-align: center;
}
.cid-sZ2eSnJqVe {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sZ2eSnJqVe .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZ2eSnJqVe .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-sZ2eSnJqVe .btn {
  margin-bottom: 2rem;
}
.cid-sZ2eSnJqVe .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-sZ2eSnJqVe .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sZ2eSnJqVe .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-sZ2eSnJqVe .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZ2eSnJqVe .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZ2eSnJqVe .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-sZ2eSnJqVe .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-sZ2eSnJqVe .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-sZ2eSnJqVe .links {
  color: #000000;
  text-align: center;
}
.cid-t2jSVWLG0t {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-t2jSVWLG0t li {
  list-style: none;
}
.cid-t2jSVWLG0t .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-t2jSVWLG0t .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-t2jSVWLG0t h4 {
  margin: 0;
}
.cid-t2jSVWLG0t .item {
  color: #57468b;
}
.cid-t2jSVWLG0t ul {
  padding: 0;
  margin: 0;
}
.cid-t2jSVWLG0t .col-title {
  color: #57468b;
}
.cid-t2jSVWLG0t .col-title1 {
  color: #bfceff;
}
.cid-t2jSVWLG0t .col-title2 {
  color: #5580ff;
}
.cid-t2jSVWLG0t .col-title3 {
  color: #ff8a73;
}
.cid-t2jSVWLG0t .col-title4 {
  color: #57468b;
}
.cid-t2jSVWLG0t .item1 {
  color: #000000;
}
.cid-t2jSVWLG0t .item2 {
  color: #000000;
}
.cid-t2jSVWLG0t .item3 {
  color: #000000;
}
.cid-t2jSVWLG0t .item4 {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-t2jSVWLG0t .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-t2jTCLoWBH {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 0;
  padding-right: 0;
  background-color: #cccccc;
}
.cid-t2jTCLoWBH ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-t2jTCLoWBH ul li {
  padding: 1rem 0;
}
.cid-t2jTCLoWBH ul li:hover {
  color: #000000;
}
.cid-t2jTCLoWBH .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t2jTCLoWBH .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-t2jTCLoWBH .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-t2jTCLoWBH .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-t2jTCLoWBH .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t2jTCLoWBH .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-t2jTCLoWBH .map {
    height: auto;
  }
}
.cid-t2jTCLoWBH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2jTCLoWBH .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-t2jTCLoWBH .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t2jTCLoWBH .social-list a:hover {
  opacity: 1;
}
.cid-t2jTCLoWBH .row-element,
.cid-t2jTCLoWBH .image-element {
  padding: 0;
}
.cid-t2jTCLoWBH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t2jTCLoWBH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-t2jTCLoWBH .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-t2jTCLoWBH .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t2jTCLoWBH .text-content {
    padding: 2rem 1rem;
  }
  .cid-t2jTCLoWBH .underline .line {
    height: 2px;
  }
  .cid-t2jTCLoWBH .mbr-title,
  .cid-t2jTCLoWBH .underline,
  .cid-t2jTCLoWBH .mbr-text,
  .cid-t2jTCLoWBH .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t2jTCLoWBH .mbr-title,
.cid-t2jTCLoWBH .underline {
  color: #ffffff;
}
.cid-t2jTCLoWBH .mbr-text,
.cid-t2jTCLoWBH .mbr-section-btn {
  color: #ffffff;
}
.cid-t2jTCLoWBH mbr-list LI {
  color: #ffffff;
}
.cid-t2jTCLoWBH mbr-list {
  text-align: center;
}
.cid-t2jTCLoWBH .mbr-list,
.cid-t2jTCLoWBH .social-list mbr-list {
  color: #ffffff;
}
.cid-t2jTCLoWBH .social-list,
.cid-t2jTCLoWBH .mbr-list {
  color: #000000;
}
.cid-t2jTCLoWBH .mbr-text {
  color: #000000;
}
.cid-t2Hs2kxuoq {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-t2Hs2kxuoq .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t2Hs2kxuoq .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t2Hs2kxuoq .socicon {
  font-size: 1.3rem;
  background: #efefef;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t2Hs2kxuoq .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2Hs2kxuoq .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-t2Hs2kxuoq .text2 {
  color: #000000;
  text-align: left;
}
.cid-t2Hs2kxuoq .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t2Hs2kxuoq .logo-title {
  text-align: center;
}
.cid-t2Hs2kxuoq .logo-sub-title {
  text-align: center;
}
.cid-t2Hs2kxuoq .links {
  text-align: center;
  color: #656565;
}
.cid-t2Hs2kxuoq .logo-sub-title i {
  color: #9e9e9e;
}
.cid-t2Hs2kxuoq .links,
.cid-t2Hs2kxuoq .social-list {
  color: #000000;
}
.cid-t2Hs2kxuoq .logo-title,
.cid-t2Hs2kxuoq .logo {
  color: #000000;
}
.cid-sZ2eONrECh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #c1c1c1;
}
.cid-sZ2eONrECh a:link {
  text-decoration: none;
}
.cid-sZ2eONrECh .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZ2eONrECh .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sZ2eONrECh .inner-text {
  line-height: 3em;
}
.cid-sZ2eONrECh .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZ2eONrECh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZ2eONrECh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sZ2eONrECh .content-text,
.cid-sZ2eONrECh .inner-text {
  color: #efefef;
}
.cid-sYWpYTEf5I .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-sYWpYTEf5I .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-sYWpYTEf5I .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sYWpYTEf5I .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYWpYTEf5I .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sYWpYTEf5I .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYWpYTEf5I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYWpYTEf5I .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sYWpYTEf5I .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sYWpYTEf5I .navbar.collapsed.opened .navbar-collapse.show,
.cid-sYWpYTEf5I .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sYWpYTEf5I .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sYWpYTEf5I .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sYWpYTEf5I .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYWpYTEf5I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYWpYTEf5I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYWpYTEf5I .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYWpYTEf5I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYWpYTEf5I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYWpYTEf5I .navbar {
    flex-wrap: nowrap;
  }
  .cid-sYWpYTEf5I .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sYWpYTEf5I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYWpYTEf5I .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sYWpYTEf5I .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sYWpYTEf5I .navbar.opened .navbar-collapse.show,
  .cid-sYWpYTEf5I .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sYWpYTEf5I .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sYWpYTEf5I .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYWpYTEf5I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYWpYTEf5I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYWpYTEf5I .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYWpYTEf5I .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYWpYTEf5I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYWpYTEf5I .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sYWpYTEf5I .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sYWpYTEf5I .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-sYWpYTEf5I .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYWpYTEf5I .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYWpYTEf5I .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYWpYTEf5I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYWpYTEf5I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYWpYTEf5I .dropdown-item.active,
.cid-sYWpYTEf5I .dropdown-item:active {
  background-color: transparent;
}
.cid-sYWpYTEf5I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYWpYTEf5I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYWpYTEf5I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYWpYTEf5I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-sYWpYTEf5I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYWpYTEf5I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYWpYTEf5I ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYWpYTEf5I .navbar-buttons {
  text-align: center;
}
.cid-sYWpYTEf5I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYWpYTEf5I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYWpYTEf5I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYWpYTEf5I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWpYTEf5I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWpYTEf5I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYWpYTEf5I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWpYTEf5I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYWpYTEf5I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYWpYTEf5I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWpYTEf5I .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: solid 3px #007f80;
  -webkit-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
}
.cid-sYWpYTEf5I a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sYWpYTEf5I a.nav-link:focus {
  outline: none;
}
.cid-sYWpYTEf5I .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYWpYTEf5I .nav-link:hover,
.cid-sYWpYTEf5I .dropdown-item:hover {
  color: #ffffff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYWpYTEf5I .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sYWpYTEf5I .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sYXrNSSv11 {
  overflow-x: hidden !important;
}
.cid-sYXrNSSv11,
.cid-sYXrNSSv11 .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 90px;
}
.cid-sYXrNSSv11 .mbr-section-title {
  color: #ffffff;
}
.cid-sYXrNSSv11 .mbr-section-title span {
  color: #000000;
}
.cid-sYXrNSSv11 .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sYXrNSSv11 .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/imagem-2564-2000x334.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sYXrNSSv11 .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sYXrNSSv11 .mbr-overlay {
  z-index: 1;
}
.cid-sYXrNSSv11 .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sYWpYWZYfP {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sYWpYWZYfP .nav-tabs .nav-item.open .nav-link:focus,
.cid-sYWpYWZYfP .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sYWpYWZYfP .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 0px solid lightgray;
}
.cid-sYWpYWZYfP .nav-tabs .nav-item {
  padding: .0rem;
}
.cid-sYWpYWZYfP .nav-link {
  padding: .4rem 0.8rem;
}
.cid-sYWpYWZYfP .nav-tabs .nav-link {
  color: #0e6bb3;
  font-style: normal;
  font-weight: 500;
  transition: all .5s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid #ffffff;
}
.cid-sYWpYWZYfP .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #0e6bb3;
  border-bottom: 2px solid #0e6bb3;
}
.cid-sYWpYWZYfP .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #0e6bb3;
  font-style: normal;
  border-bottom: 2px solid #0e6bb3;
}
.cid-sYWpYWZYfP P {
  color: #0e6bb3;
}
@media (max-width: 576px) {
  .cid-sYWpYWZYfP .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-sYWpYWZYfP .mbr-text,
  .cid-sYWpYWZYfP .nav-link {
    text-align: center;
  }
}
.cid-sYXvhBSO7V {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/imagem-25-1599x533.jpg");
}
.cid-sYXvhBSO7V .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sYXvhBSO7V .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sYXvhBSO7V .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sYXvhBSO7V .animated-element,
.cid-sYXvhBSO7V .typed-cursor {
  color: #f1de85;
}
@media (max-width: 767px) {
  .cid-sYXvhBSO7V .typed-text {
    text-align: center;
  }
}
.cid-sYXvhBSO7V .mbr-section-title DIV {
  text-align: center;
}
.cid-sYXvhBSO7V .mbr-section-title {
  text-align: center;
}
.cid-sYXvhBSO7V .mbr-text,
.cid-sYXvhBSO7V .typed-text,
.cid-sYXvhBSO7V .mbr-section-btn {
  text-align: center;
}
.cid-sZ2g64LMgR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sZ2g64LMgR .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZ2g64LMgR .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-sZ2g64LMgR .btn {
  margin-bottom: 2rem;
}
.cid-sZ2g64LMgR .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-sZ2g64LMgR .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sZ2g64LMgR .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-sZ2g64LMgR .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZ2g64LMgR .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZ2g64LMgR .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-sZ2g64LMgR .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-sZ2g64LMgR .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-sZ2g64LMgR .links {
  color: #000000;
  text-align: center;
}
.cid-t2jUH8iM8D {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-t2jUH8iM8D li {
  list-style: none;
}
.cid-t2jUH8iM8D .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-t2jUH8iM8D .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-t2jUH8iM8D h4 {
  margin: 0;
}
.cid-t2jUH8iM8D .item {
  color: #57468b;
}
.cid-t2jUH8iM8D ul {
  padding: 0;
  margin: 0;
}
.cid-t2jUH8iM8D .col-title {
  color: #57468b;
}
.cid-t2jUH8iM8D .col-title1 {
  color: #bfceff;
}
.cid-t2jUH8iM8D .col-title2 {
  color: #5580ff;
}
.cid-t2jUH8iM8D .col-title3 {
  color: #ff8a73;
}
.cid-t2jUH8iM8D .col-title4 {
  color: #57468b;
}
.cid-t2jUH8iM8D .item1 {
  color: #000000;
}
.cid-t2jUH8iM8D .item2 {
  color: #000000;
}
.cid-t2jUH8iM8D .item3 {
  color: #000000;
}
.cid-t2jUH8iM8D .item4 {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-t2jUH8iM8D .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-t2jUIo95JZ {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 0;
  padding-right: 0;
  background-color: #cccccc;
}
.cid-t2jUIo95JZ ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-t2jUIo95JZ ul li {
  padding: 1rem 0;
}
.cid-t2jUIo95JZ ul li:hover {
  color: #000000;
}
.cid-t2jUIo95JZ .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t2jUIo95JZ .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-t2jUIo95JZ .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-t2jUIo95JZ .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-t2jUIo95JZ .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t2jUIo95JZ .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-t2jUIo95JZ .map {
    height: auto;
  }
}
.cid-t2jUIo95JZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2jUIo95JZ .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-t2jUIo95JZ .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t2jUIo95JZ .social-list a:hover {
  opacity: 1;
}
.cid-t2jUIo95JZ .row-element,
.cid-t2jUIo95JZ .image-element {
  padding: 0;
}
.cid-t2jUIo95JZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t2jUIo95JZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-t2jUIo95JZ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-t2jUIo95JZ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t2jUIo95JZ .text-content {
    padding: 2rem 1rem;
  }
  .cid-t2jUIo95JZ .underline .line {
    height: 2px;
  }
  .cid-t2jUIo95JZ .mbr-title,
  .cid-t2jUIo95JZ .underline,
  .cid-t2jUIo95JZ .mbr-text,
  .cid-t2jUIo95JZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t2jUIo95JZ .mbr-title,
.cid-t2jUIo95JZ .underline {
  color: #ffffff;
}
.cid-t2jUIo95JZ .mbr-text,
.cid-t2jUIo95JZ .mbr-section-btn {
  color: #ffffff;
}
.cid-t2jUIo95JZ mbr-list LI {
  color: #ffffff;
}
.cid-t2jUIo95JZ mbr-list {
  text-align: center;
}
.cid-t2jUIo95JZ .mbr-list,
.cid-t2jUIo95JZ .social-list mbr-list {
  color: #ffffff;
}
.cid-t2jUIo95JZ .social-list,
.cid-t2jUIo95JZ .mbr-list {
  color: #000000;
}
.cid-t2jUIo95JZ .mbr-text {
  color: #000000;
}
.cid-t2HseC4TpZ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-t2HseC4TpZ .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t2HseC4TpZ .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t2HseC4TpZ .socicon {
  font-size: 1.3rem;
  background: #efefef;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t2HseC4TpZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2HseC4TpZ .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-t2HseC4TpZ .text2 {
  color: #000000;
  text-align: left;
}
.cid-t2HseC4TpZ .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t2HseC4TpZ .logo-title {
  text-align: center;
}
.cid-t2HseC4TpZ .logo-sub-title {
  text-align: center;
}
.cid-t2HseC4TpZ .links {
  text-align: center;
  color: #656565;
}
.cid-t2HseC4TpZ .logo-sub-title i {
  color: #9e9e9e;
}
.cid-t2HseC4TpZ .links,
.cid-t2HseC4TpZ .social-list {
  color: #000000;
}
.cid-t2HseC4TpZ .logo-title,
.cid-t2HseC4TpZ .logo {
  color: #000000;
}
.cid-sZ2g2uTPxl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #c1c1c1;
}
.cid-sZ2g2uTPxl a:link {
  text-decoration: none;
}
.cid-sZ2g2uTPxl .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZ2g2uTPxl .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sZ2g2uTPxl .inner-text {
  line-height: 3em;
}
.cid-sZ2g2uTPxl .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZ2g2uTPxl .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZ2g2uTPxl .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sZ2g2uTPxl .content-text,
.cid-sZ2g2uTPxl .inner-text {
  color: #efefef;
}
.cid-sYWpWdmRXK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-sYWpWdmRXK .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-sYWpWdmRXK .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sYWpWdmRXK .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYWpWdmRXK .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sYWpWdmRXK .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYWpWdmRXK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYWpWdmRXK .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sYWpWdmRXK .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sYWpWdmRXK .navbar.collapsed.opened .navbar-collapse.show,
.cid-sYWpWdmRXK .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sYWpWdmRXK .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sYWpWdmRXK .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sYWpWdmRXK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYWpWdmRXK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYWpWdmRXK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYWpWdmRXK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYWpWdmRXK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYWpWdmRXK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYWpWdmRXK .navbar {
    flex-wrap: nowrap;
  }
  .cid-sYWpWdmRXK .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sYWpWdmRXK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYWpWdmRXK .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sYWpWdmRXK .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sYWpWdmRXK .navbar.opened .navbar-collapse.show,
  .cid-sYWpWdmRXK .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sYWpWdmRXK .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sYWpWdmRXK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYWpWdmRXK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYWpWdmRXK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYWpWdmRXK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYWpWdmRXK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYWpWdmRXK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYWpWdmRXK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sYWpWdmRXK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sYWpWdmRXK .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-sYWpWdmRXK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYWpWdmRXK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYWpWdmRXK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYWpWdmRXK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYWpWdmRXK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYWpWdmRXK .dropdown-item.active,
.cid-sYWpWdmRXK .dropdown-item:active {
  background-color: transparent;
}
.cid-sYWpWdmRXK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYWpWdmRXK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYWpWdmRXK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYWpWdmRXK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-sYWpWdmRXK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYWpWdmRXK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYWpWdmRXK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYWpWdmRXK .navbar-buttons {
  text-align: center;
}
.cid-sYWpWdmRXK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYWpWdmRXK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYWpWdmRXK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYWpWdmRXK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWpWdmRXK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWpWdmRXK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYWpWdmRXK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWpWdmRXK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYWpWdmRXK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYWpWdmRXK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWpWdmRXK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: solid 3px #007f80;
  -webkit-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
}
.cid-sYWpWdmRXK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sYWpWdmRXK a.nav-link:focus {
  outline: none;
}
.cid-sYWpWdmRXK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYWpWdmRXK .nav-link:hover,
.cid-sYWpWdmRXK .dropdown-item:hover {
  color: #ffffff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYWpWdmRXK .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sYWpWdmRXK .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sYXuaQWS9m {
  overflow-x: hidden !important;
}
.cid-sYXuaQWS9m,
.cid-sYXuaQWS9m .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 90px;
}
.cid-sYXuaQWS9m .mbr-section-title {
  color: #ffffff;
}
.cid-sYXuaQWS9m .mbr-section-title span {
  color: #000000;
}
.cid-sYXuaQWS9m .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sYXuaQWS9m .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/imagem-2564-2000x334.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sYXuaQWS9m .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sYXuaQWS9m .mbr-overlay {
  z-index: 1;
}
.cid-sYXuaQWS9m .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sYWpWf6gAC {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYWpWf6gAC .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYWpWf6gAC .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYWpWf6gAC .card-img span {
  font-size: 100px;
}
.cid-sYWpWf6gAC .mbr-text,
.cid-sYWpWf6gAC .mbr-section-btn {
  color: #0e6bb3;
}
.cid-sYWpWf6gAC .mbr-section-title,
.cid-sYWpWf6gAC .card-img {
  color: #b4924b;
}
.cid-sYWpWfGpsB {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sYWpWfGpsB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sYWpWfGpsB textarea {
  min-height: 150px;
}
.cid-sYWpWfGpsB .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #4554c1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-sYWpWfGpsB input::-webkit-clear-button {
  display: none;
}
.cid-sYWpWfGpsB input::-webkit-inner-spin-button {
  display: none;
}
.cid-sYWpWfGpsB input::-webkit-outer-spin-button {
  display: none;
}
.cid-sYWpWfGpsB input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sYXv732g6L {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/imagem-25-1599x533.jpg");
}
.cid-sYXv732g6L .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sYXv732g6L .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sYXv732g6L .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sYXv732g6L .animated-element,
.cid-sYXv732g6L .typed-cursor {
  color: #f1de85;
}
@media (max-width: 767px) {
  .cid-sYXv732g6L .typed-text {
    text-align: center;
  }
}
.cid-sYXv732g6L .mbr-section-title DIV {
  text-align: center;
}
.cid-sYXv732g6L .mbr-section-title {
  text-align: center;
}
.cid-sYXv732g6L .mbr-text,
.cid-sYXv732g6L .typed-text,
.cid-sYXv732g6L .mbr-section-btn {
  text-align: center;
}
.cid-sZ2flDu2PI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sZ2flDu2PI .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZ2flDu2PI .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-sZ2flDu2PI .btn {
  margin-bottom: 2rem;
}
.cid-sZ2flDu2PI .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-sZ2flDu2PI .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sZ2flDu2PI .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-sZ2flDu2PI .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZ2flDu2PI .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZ2flDu2PI .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-sZ2flDu2PI .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-sZ2flDu2PI .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-sZ2flDu2PI .links {
  color: #000000;
  text-align: center;
}
.cid-t2jTUwgSjh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-t2jTUwgSjh li {
  list-style: none;
}
.cid-t2jTUwgSjh .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-t2jTUwgSjh .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-t2jTUwgSjh h4 {
  margin: 0;
}
.cid-t2jTUwgSjh .item {
  color: #57468b;
}
.cid-t2jTUwgSjh ul {
  padding: 0;
  margin: 0;
}
.cid-t2jTUwgSjh .col-title {
  color: #57468b;
}
.cid-t2jTUwgSjh .col-title1 {
  color: #bfceff;
}
.cid-t2jTUwgSjh .col-title2 {
  color: #5580ff;
}
.cid-t2jTUwgSjh .col-title3 {
  color: #ff8a73;
}
.cid-t2jTUwgSjh .col-title4 {
  color: #57468b;
}
.cid-t2jTUwgSjh .item1 {
  color: #000000;
}
.cid-t2jTUwgSjh .item2 {
  color: #000000;
}
.cid-t2jTUwgSjh .item3 {
  color: #000000;
}
.cid-t2jTUwgSjh .item4 {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-t2jTUwgSjh .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-t2jTTzmPAx {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 0;
  padding-right: 0;
  background-color: #cccccc;
}
.cid-t2jTTzmPAx ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-t2jTTzmPAx ul li {
  padding: 1rem 0;
}
.cid-t2jTTzmPAx ul li:hover {
  color: #000000;
}
.cid-t2jTTzmPAx .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t2jTTzmPAx .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-t2jTTzmPAx .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-t2jTTzmPAx .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-t2jTTzmPAx .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t2jTTzmPAx .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-t2jTTzmPAx .map {
    height: auto;
  }
}
.cid-t2jTTzmPAx .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2jTTzmPAx .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-t2jTTzmPAx .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t2jTTzmPAx .social-list a:hover {
  opacity: 1;
}
.cid-t2jTTzmPAx .row-element,
.cid-t2jTTzmPAx .image-element {
  padding: 0;
}
.cid-t2jTTzmPAx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t2jTTzmPAx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-t2jTTzmPAx .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-t2jTTzmPAx .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t2jTTzmPAx .text-content {
    padding: 2rem 1rem;
  }
  .cid-t2jTTzmPAx .underline .line {
    height: 2px;
  }
  .cid-t2jTTzmPAx .mbr-title,
  .cid-t2jTTzmPAx .underline,
  .cid-t2jTTzmPAx .mbr-text,
  .cid-t2jTTzmPAx .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t2jTTzmPAx .mbr-title,
.cid-t2jTTzmPAx .underline {
  color: #ffffff;
}
.cid-t2jTTzmPAx .mbr-text,
.cid-t2jTTzmPAx .mbr-section-btn {
  color: #ffffff;
}
.cid-t2jTTzmPAx mbr-list LI {
  color: #ffffff;
}
.cid-t2jTTzmPAx mbr-list {
  text-align: center;
}
.cid-t2jTTzmPAx .mbr-list,
.cid-t2jTTzmPAx .social-list mbr-list {
  color: #ffffff;
}
.cid-t2jTTzmPAx .social-list,
.cid-t2jTTzmPAx .mbr-list {
  color: #000000;
}
.cid-t2jTTzmPAx .mbr-text {
  color: #000000;
}
.cid-t2Hs68G2Fl {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-t2Hs68G2Fl .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t2Hs68G2Fl .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t2Hs68G2Fl .socicon {
  font-size: 1.3rem;
  background: #efefef;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t2Hs68G2Fl .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2Hs68G2Fl .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-t2Hs68G2Fl .text2 {
  color: #000000;
  text-align: left;
}
.cid-t2Hs68G2Fl .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t2Hs68G2Fl .logo-title {
  text-align: center;
}
.cid-t2Hs68G2Fl .logo-sub-title {
  text-align: center;
}
.cid-t2Hs68G2Fl .links {
  text-align: center;
  color: #656565;
}
.cid-t2Hs68G2Fl .logo-sub-title i {
  color: #9e9e9e;
}
.cid-t2Hs68G2Fl .links,
.cid-t2Hs68G2Fl .social-list {
  color: #000000;
}
.cid-t2Hs68G2Fl .logo-title,
.cid-t2Hs68G2Fl .logo {
  color: #000000;
}
.cid-sZ2fiIk4JS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #c1c1c1;
}
.cid-sZ2fiIk4JS a:link {
  text-decoration: none;
}
.cid-sZ2fiIk4JS .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZ2fiIk4JS .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sZ2fiIk4JS .inner-text {
  line-height: 3em;
}
.cid-sZ2fiIk4JS .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZ2fiIk4JS .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZ2fiIk4JS .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sZ2fiIk4JS .content-text,
.cid-sZ2fiIk4JS .inner-text {
  color: #efefef;
}
.cid-sYWqA8h5yQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-sYWqA8h5yQ .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-sYWqA8h5yQ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sYWqA8h5yQ .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYWqA8h5yQ .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sYWqA8h5yQ .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYWqA8h5yQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYWqA8h5yQ .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sYWqA8h5yQ .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sYWqA8h5yQ .navbar.collapsed.opened .navbar-collapse.show,
.cid-sYWqA8h5yQ .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sYWqA8h5yQ .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sYWqA8h5yQ .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sYWqA8h5yQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYWqA8h5yQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYWqA8h5yQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYWqA8h5yQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYWqA8h5yQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYWqA8h5yQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYWqA8h5yQ .navbar {
    flex-wrap: nowrap;
  }
  .cid-sYWqA8h5yQ .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sYWqA8h5yQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYWqA8h5yQ .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sYWqA8h5yQ .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sYWqA8h5yQ .navbar.opened .navbar-collapse.show,
  .cid-sYWqA8h5yQ .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sYWqA8h5yQ .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sYWqA8h5yQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYWqA8h5yQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYWqA8h5yQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYWqA8h5yQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYWqA8h5yQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYWqA8h5yQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYWqA8h5yQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sYWqA8h5yQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sYWqA8h5yQ .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-sYWqA8h5yQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYWqA8h5yQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYWqA8h5yQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYWqA8h5yQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYWqA8h5yQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYWqA8h5yQ .dropdown-item.active,
.cid-sYWqA8h5yQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sYWqA8h5yQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYWqA8h5yQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYWqA8h5yQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYWqA8h5yQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-sYWqA8h5yQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYWqA8h5yQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYWqA8h5yQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYWqA8h5yQ .navbar-buttons {
  text-align: center;
}
.cid-sYWqA8h5yQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYWqA8h5yQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYWqA8h5yQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYWqA8h5yQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWqA8h5yQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWqA8h5yQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYWqA8h5yQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWqA8h5yQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYWqA8h5yQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYWqA8h5yQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWqA8h5yQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: solid 3px #007f80;
  -webkit-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
}
.cid-sYWqA8h5yQ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sYWqA8h5yQ a.nav-link:focus {
  outline: none;
}
.cid-sYWqA8h5yQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYWqA8h5yQ .nav-link:hover,
.cid-sYWqA8h5yQ .dropdown-item:hover {
  color: #ffffff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYWqA8h5yQ .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sYWqA8h5yQ .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sYXtWl6KXf {
  overflow-x: hidden !important;
}
.cid-sYXtWl6KXf,
.cid-sYXtWl6KXf .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 90px;
}
.cid-sYXtWl6KXf .mbr-section-title {
  color: #ffffff;
}
.cid-sYXtWl6KXf .mbr-section-title span {
  color: #000000;
}
.cid-sYXtWl6KXf .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sYXtWl6KXf .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/imagem-2564-2000x334.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sYXtWl6KXf .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sYXtWl6KXf .mbr-overlay {
  z-index: 1;
}
.cid-sYXtWl6KXf .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sYWqA9qS2b {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYWqA9qS2b .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYWqA9qS2b .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYWqA9qS2b .card-img span {
  font-size: 100px;
}
.cid-sYWqA9qS2b .mbr-text,
.cid-sYWqA9qS2b .mbr-section-btn {
  color: #0e6bb3;
}
.cid-sYWqA9qS2b .mbr-section-title,
.cid-sYWqA9qS2b .card-img {
  color: #b4924b;
}
.cid-sYWqAg9uEE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sYWqAg9uEE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sYWqAg9uEE textarea {
  min-height: 150px;
}
.cid-sYWqAg9uEE .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #c7a620;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-sYWqAg9uEE input::-webkit-clear-button {
  display: none;
}
.cid-sYWqAg9uEE input::-webkit-inner-spin-button {
  display: none;
}
.cid-sYWqAg9uEE input::-webkit-outer-spin-button {
  display: none;
}
.cid-sYWqAg9uEE input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sYXvehaJOf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/imagem-25-1599x533.jpg");
}
.cid-sYXvehaJOf .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sYXvehaJOf .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sYXvehaJOf .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sYXvehaJOf .animated-element,
.cid-sYXvehaJOf .typed-cursor {
  color: #f1de85;
}
@media (max-width: 767px) {
  .cid-sYXvehaJOf .typed-text {
    text-align: center;
  }
}
.cid-sYXvehaJOf .mbr-section-title DIV {
  text-align: center;
}
.cid-sYXvehaJOf .mbr-section-title {
  text-align: center;
}
.cid-sYXvehaJOf .mbr-text,
.cid-sYXvehaJOf .typed-text,
.cid-sYXvehaJOf .mbr-section-btn {
  text-align: center;
}
.cid-sZ2fTRs3gY {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sZ2fTRs3gY .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZ2fTRs3gY .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-sZ2fTRs3gY .btn {
  margin-bottom: 2rem;
}
.cid-sZ2fTRs3gY .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-sZ2fTRs3gY .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sZ2fTRs3gY .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-sZ2fTRs3gY .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZ2fTRs3gY .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZ2fTRs3gY .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-sZ2fTRs3gY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-sZ2fTRs3gY .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-sZ2fTRs3gY .links {
  color: #000000;
  text-align: center;
}
.cid-t2jUuN5xqn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-t2jUuN5xqn li {
  list-style: none;
}
.cid-t2jUuN5xqn .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-t2jUuN5xqn .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-t2jUuN5xqn h4 {
  margin: 0;
}
.cid-t2jUuN5xqn .item {
  color: #57468b;
}
.cid-t2jUuN5xqn ul {
  padding: 0;
  margin: 0;
}
.cid-t2jUuN5xqn .col-title {
  color: #57468b;
}
.cid-t2jUuN5xqn .col-title1 {
  color: #bfceff;
}
.cid-t2jUuN5xqn .col-title2 {
  color: #5580ff;
}
.cid-t2jUuN5xqn .col-title3 {
  color: #ff8a73;
}
.cid-t2jUuN5xqn .col-title4 {
  color: #57468b;
}
.cid-t2jUuN5xqn .item1 {
  color: #000000;
}
.cid-t2jUuN5xqn .item2 {
  color: #000000;
}
.cid-t2jUuN5xqn .item3 {
  color: #000000;
}
.cid-t2jUuN5xqn .item4 {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-t2jUuN5xqn .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-t2jUywpfXm {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 0;
  padding-right: 0;
  background-color: #cccccc;
}
.cid-t2jUywpfXm ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-t2jUywpfXm ul li {
  padding: 1rem 0;
}
.cid-t2jUywpfXm ul li:hover {
  color: #000000;
}
.cid-t2jUywpfXm .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t2jUywpfXm .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-t2jUywpfXm .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-t2jUywpfXm .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-t2jUywpfXm .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t2jUywpfXm .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-t2jUywpfXm .map {
    height: auto;
  }
}
.cid-t2jUywpfXm .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2jUywpfXm .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-t2jUywpfXm .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t2jUywpfXm .social-list a:hover {
  opacity: 1;
}
.cid-t2jUywpfXm .row-element,
.cid-t2jUywpfXm .image-element {
  padding: 0;
}
.cid-t2jUywpfXm .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t2jUywpfXm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-t2jUywpfXm .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-t2jUywpfXm .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t2jUywpfXm .text-content {
    padding: 2rem 1rem;
  }
  .cid-t2jUywpfXm .underline .line {
    height: 2px;
  }
  .cid-t2jUywpfXm .mbr-title,
  .cid-t2jUywpfXm .underline,
  .cid-t2jUywpfXm .mbr-text,
  .cid-t2jUywpfXm .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t2jUywpfXm .mbr-title,
.cid-t2jUywpfXm .underline {
  color: #ffffff;
}
.cid-t2jUywpfXm .mbr-text,
.cid-t2jUywpfXm .mbr-section-btn {
  color: #ffffff;
}
.cid-t2jUywpfXm mbr-list LI {
  color: #ffffff;
}
.cid-t2jUywpfXm mbr-list {
  text-align: center;
}
.cid-t2jUywpfXm .mbr-list,
.cid-t2jUywpfXm .social-list mbr-list {
  color: #ffffff;
}
.cid-t2jUywpfXm .social-list,
.cid-t2jUywpfXm .mbr-list {
  color: #000000;
}
.cid-t2jUywpfXm .mbr-text {
  color: #000000;
}
.cid-t2HsbMZjc2 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-t2HsbMZjc2 .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t2HsbMZjc2 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t2HsbMZjc2 .socicon {
  font-size: 1.3rem;
  background: #efefef;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t2HsbMZjc2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2HsbMZjc2 .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-t2HsbMZjc2 .text2 {
  color: #000000;
  text-align: left;
}
.cid-t2HsbMZjc2 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t2HsbMZjc2 .logo-title {
  text-align: center;
}
.cid-t2HsbMZjc2 .logo-sub-title {
  text-align: center;
}
.cid-t2HsbMZjc2 .links {
  text-align: center;
  color: #656565;
}
.cid-t2HsbMZjc2 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-t2HsbMZjc2 .links,
.cid-t2HsbMZjc2 .social-list {
  color: #000000;
}
.cid-t2HsbMZjc2 .logo-title,
.cid-t2HsbMZjc2 .logo {
  color: #000000;
}
.cid-sZ2fRajjOZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #c1c1c1;
}
.cid-sZ2fRajjOZ a:link {
  text-decoration: none;
}
.cid-sZ2fRajjOZ .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZ2fRajjOZ .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sZ2fRajjOZ .inner-text {
  line-height: 3em;
}
.cid-sZ2fRajjOZ .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZ2fRajjOZ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZ2fRajjOZ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sZ2fRajjOZ .content-text,
.cid-sZ2fRajjOZ .inner-text {
  color: #efefef;
}
.cid-sYXu49UmHa {
  overflow-x: hidden !important;
}
.cid-sYXu49UmHa,
.cid-sYXu49UmHa .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 90px;
}
.cid-sYXu49UmHa .mbr-section-title {
  color: #ffffff;
}
.cid-sYXu49UmHa .mbr-section-title span {
  color: #000000;
}
.cid-sYXu49UmHa .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sYXu49UmHa .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 22s !important;
  animation-duration: 22s;
  background-image: url("../../../assets/images/imagem-2564-2000x334.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sYXu49UmHa .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sYXu49UmHa .mbr-overlay {
  z-index: 1;
}
.cid-sYXu49UmHa .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sYWtiQwLuQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-sYWtiQwLuQ .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-sYWtiQwLuQ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sYWtiQwLuQ .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYWtiQwLuQ .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sYWtiQwLuQ .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYWtiQwLuQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYWtiQwLuQ .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sYWtiQwLuQ .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sYWtiQwLuQ .navbar.collapsed.opened .navbar-collapse.show,
.cid-sYWtiQwLuQ .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sYWtiQwLuQ .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sYWtiQwLuQ .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sYWtiQwLuQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYWtiQwLuQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYWtiQwLuQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYWtiQwLuQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYWtiQwLuQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYWtiQwLuQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYWtiQwLuQ .navbar {
    flex-wrap: nowrap;
  }
  .cid-sYWtiQwLuQ .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sYWtiQwLuQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYWtiQwLuQ .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sYWtiQwLuQ .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sYWtiQwLuQ .navbar.opened .navbar-collapse.show,
  .cid-sYWtiQwLuQ .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sYWtiQwLuQ .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sYWtiQwLuQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYWtiQwLuQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYWtiQwLuQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYWtiQwLuQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYWtiQwLuQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYWtiQwLuQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYWtiQwLuQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sYWtiQwLuQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sYWtiQwLuQ .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-sYWtiQwLuQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYWtiQwLuQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYWtiQwLuQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYWtiQwLuQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYWtiQwLuQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYWtiQwLuQ .dropdown-item.active,
.cid-sYWtiQwLuQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sYWtiQwLuQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYWtiQwLuQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYWtiQwLuQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYWtiQwLuQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-sYWtiQwLuQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYWtiQwLuQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYWtiQwLuQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYWtiQwLuQ .navbar-buttons {
  text-align: center;
}
.cid-sYWtiQwLuQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYWtiQwLuQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYWtiQwLuQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYWtiQwLuQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWtiQwLuQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYWtiQwLuQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYWtiQwLuQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWtiQwLuQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYWtiQwLuQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYWtiQwLuQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYWtiQwLuQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: solid 3px #007f80;
  -webkit-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.75);
}
.cid-sYWtiQwLuQ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sYWtiQwLuQ a.nav-link:focus {
  outline: none;
}
.cid-sYWtiQwLuQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYWtiQwLuQ .nav-link:hover,
.cid-sYWtiQwLuQ .dropdown-item:hover {
  color: #ffffff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYWtiQwLuQ .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sYWtiQwLuQ .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sYWtiREH4U {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYWtiREH4U .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sYWtiREH4U .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sYWtiREH4U .card-img span {
  font-size: 100px;
}
.cid-sYWtiREH4U .mbr-text,
.cid-sYWtiREH4U .mbr-section-btn {
  color: #0e6bb3;
}
.cid-sYWtiREH4U .mbr-section-title,
.cid-sYWtiREH4U .card-img {
  color: #b4924b;
}
.cid-sYWtiWTNTi {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sYWtiWTNTi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sYWtiWTNTi textarea {
  min-height: 150px;
}
.cid-sYWtiWTNTi .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #c7a620;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-sYWtiWTNTi input::-webkit-clear-button {
  display: none;
}
.cid-sYWtiWTNTi input::-webkit-inner-spin-button {
  display: none;
}
.cid-sYWtiWTNTi input::-webkit-outer-spin-button {
  display: none;
}
.cid-sYWtiWTNTi input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t2jUfyGvAw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/imagem-25-1599x533.jpg");
}
.cid-t2jUfyGvAw .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-t2jUfyGvAw .mbr-arrow i {
  color: #ffffff !important;
}
.cid-t2jUfyGvAw .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-t2jUfyGvAw .animated-element,
.cid-t2jUfyGvAw .typed-cursor {
  color: #f1de85;
}
@media (max-width: 767px) {
  .cid-t2jUfyGvAw .typed-text {
    text-align: center;
  }
}
.cid-t2jUfyGvAw .mbr-section-title DIV {
  text-align: center;
}
.cid-t2jUfyGvAw .mbr-section-title {
  text-align: center;
}
.cid-t2jUfyGvAw .mbr-text,
.cid-t2jUfyGvAw .typed-text,
.cid-t2jUfyGvAw .mbr-section-btn {
  text-align: center;
}
.cid-sZ2fuenft7 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sZ2fuenft7 .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZ2fuenft7 .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-sZ2fuenft7 .btn {
  margin-bottom: 2rem;
}
.cid-sZ2fuenft7 .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-sZ2fuenft7 .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sZ2fuenft7 .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: black;
}
.cid-sZ2fuenft7 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZ2fuenft7 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZ2fuenft7 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-sZ2fuenft7 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-sZ2fuenft7 .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-sZ2fuenft7 .links {
  color: #000000;
  text-align: center;
}
.cid-t2jUcwMnQ3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-t2jUcwMnQ3 li {
  list-style: none;
}
.cid-t2jUcwMnQ3 .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-t2jUcwMnQ3 .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-t2jUcwMnQ3 h4 {
  margin: 0;
}
.cid-t2jUcwMnQ3 .item {
  color: #57468b;
}
.cid-t2jUcwMnQ3 ul {
  padding: 0;
  margin: 0;
}
.cid-t2jUcwMnQ3 .col-title {
  color: #57468b;
}
.cid-t2jUcwMnQ3 .col-title1 {
  color: #bfceff;
}
.cid-t2jUcwMnQ3 .col-title2 {
  color: #5580ff;
}
.cid-t2jUcwMnQ3 .col-title3 {
  color: #ff8a73;
}
.cid-t2jUcwMnQ3 .col-title4 {
  color: #57468b;
}
.cid-t2jUcwMnQ3 .item1 {
  color: #000000;
}
.cid-t2jUcwMnQ3 .item2 {
  color: #000000;
}
.cid-t2jUcwMnQ3 .item3 {
  color: #000000;
}
.cid-t2jUcwMnQ3 .item4 {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-t2jUcwMnQ3 .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-t2jUbJFeqg {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 0;
  padding-right: 0;
  background-color: #cccccc;
}
.cid-t2jUbJFeqg ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-t2jUbJFeqg ul li {
  padding: 1rem 0;
}
.cid-t2jUbJFeqg ul li:hover {
  color: #000000;
}
.cid-t2jUbJFeqg .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t2jUbJFeqg .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-t2jUbJFeqg .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-t2jUbJFeqg .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-t2jUbJFeqg .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t2jUbJFeqg .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-t2jUbJFeqg .map {
    height: auto;
  }
}
.cid-t2jUbJFeqg .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2jUbJFeqg .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-t2jUbJFeqg .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t2jUbJFeqg .social-list a:hover {
  opacity: 1;
}
.cid-t2jUbJFeqg .row-element,
.cid-t2jUbJFeqg .image-element {
  padding: 0;
}
.cid-t2jUbJFeqg .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t2jUbJFeqg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-t2jUbJFeqg .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-t2jUbJFeqg .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t2jUbJFeqg .text-content {
    padding: 2rem 1rem;
  }
  .cid-t2jUbJFeqg .underline .line {
    height: 2px;
  }
  .cid-t2jUbJFeqg .mbr-title,
  .cid-t2jUbJFeqg .underline,
  .cid-t2jUbJFeqg .mbr-text,
  .cid-t2jUbJFeqg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t2jUbJFeqg .mbr-title,
.cid-t2jUbJFeqg .underline {
  color: #ffffff;
}
.cid-t2jUbJFeqg .mbr-text,
.cid-t2jUbJFeqg .mbr-section-btn {
  color: #ffffff;
}
.cid-t2jUbJFeqg mbr-list LI {
  color: #ffffff;
}
.cid-t2jUbJFeqg mbr-list {
  text-align: center;
}
.cid-t2jUbJFeqg .mbr-list,
.cid-t2jUbJFeqg .social-list mbr-list {
  color: #ffffff;
}
.cid-t2jUbJFeqg .social-list,
.cid-t2jUbJFeqg .mbr-list {
  color: #000000;
}
.cid-t2jUbJFeqg .mbr-text {
  color: #000000;
}
.cid-t2Hs8S7l1S {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-t2Hs8S7l1S .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t2Hs8S7l1S .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t2Hs8S7l1S .socicon {
  font-size: 1.3rem;
  background: #efefef;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t2Hs8S7l1S .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-t2Hs8S7l1S .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-t2Hs8S7l1S .text2 {
  color: #000000;
  text-align: left;
}
.cid-t2Hs8S7l1S .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t2Hs8S7l1S .logo-title {
  text-align: center;
}
.cid-t2Hs8S7l1S .logo-sub-title {
  text-align: center;
}
.cid-t2Hs8S7l1S .links {
  text-align: center;
  color: #656565;
}
.cid-t2Hs8S7l1S .logo-sub-title i {
  color: #9e9e9e;
}
.cid-t2Hs8S7l1S .links,
.cid-t2Hs8S7l1S .social-list {
  color: #000000;
}
.cid-t2Hs8S7l1S .logo-title,
.cid-t2Hs8S7l1S .logo {
  color: #000000;
}
.cid-sZ2fHrJGWc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #c1c1c1;
}
.cid-sZ2fHrJGWc a:link {
  text-decoration: none;
}
.cid-sZ2fHrJGWc .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sZ2fHrJGWc .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sZ2fHrJGWc .inner-text {
  line-height: 3em;
}
.cid-sZ2fHrJGWc .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZ2fHrJGWc .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sZ2fHrJGWc .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sZ2fHrJGWc .content-text,
.cid-sZ2fHrJGWc .inner-text {
  color: #efefef;
}
