body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4.1rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.56rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.52rem;
}
/* ---- 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.28rem;
    font-size: calc( 2.085rem + (4.1 - 2.085) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.085rem + (4.1 - 2.085) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #084c78 !important;
}
.bg-success {
  background-color: #021e2f !important;
}
.bg-info {
  background-color: #ffd200 !important;
}
.bg-warning {
  background-color: #38c776 !important;
}
.bg-danger {
  background-color: #c11c1c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #084c78 !important;
  border-color: #084c78 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #031f30 !important;
  border-color: #031f30 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #031f30 !important;
  border-color: #031f30 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f9a106 !important;
  border-color: #f9a106 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ae7104 !important;
  border-color: #ae7104 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ae7104 !important;
  border-color: #ae7104 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffd200 !important;
  border-color: #ffd200 !important;
  color: #000000 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #000000 !important;
  background-color: #b39300 !important;
  border-color: #b39300 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #b39300 !important;
  border-color: #b39300 !important;
}
.btn-success,
.btn-success:active {
  background-color: #021e2f !important;
  border-color: #021e2f !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #38c776 !important;
  border-color: #38c776 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #278b53 !important;
  border-color: #278b53 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #278b53 !important;
  border-color: #278b53 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c11c1c !important;
  border-color: #c11c1c !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #7e1212 !important;
  border-color: #7e1212 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7e1212 !important;
  border-color: #7e1212 !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: #020f18;
  color: #020f18;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #084c78;
  border-color: #084c78;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #084c78 !important;
  border-color: #084c78 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #956104;
  color: #956104;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #f9a106;
  border-color: #f9a106;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f9a106 !important;
  border-color: #f9a106 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #997e00;
  color: #997e00;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000;
  background-color: #ffd200;
  border-color: #ffd200;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #000000 !important;
  background-color: #ffd200 !important;
  border-color: #ffd200 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #021e2f;
  border-color: #021e2f;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #021e2f !important;
  border-color: #021e2f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #227747;
  color: #227747;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #38c776;
  border-color: #38c776;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #38c776 !important;
  border-color: #38c776 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #680f0f;
  color: #680f0f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #c11c1c;
  border-color: #c11c1c;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c11c1c !important;
  border-color: #c11c1c !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: #084c78 !important;
}
.text-secondary {
  color: #f9a106 !important;
}
.text-success {
  color: #021e2f !important;
}
.text-info {
  color: #ffd200 !important;
}
.text-warning {
  color: #38c776 !important;
}
.text-danger {
  color: #c11c1c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #020f18 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #956104 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #997e00 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #227747 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #680f0f !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: #ffd200;
}
.alert-warning {
  background-color: #38c776;
}
.alert-danger {
  background-color: #c11c1c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #084c78;
  border-color: #084c78;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #084c78;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1098ef;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #9bd7fb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fff6cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9ce3bb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #eb7272;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.52rem;
}
blockquote {
  border-color: #084c78;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@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: #084c78;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #084c78;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@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: #084c78;
  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: #084c78;
  border-bottom-color: #084c78;
}
.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: #084c78 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f9a106 !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='%23084c78' %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-rkkmdw5hzL .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rkkmdw5hzL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rkkmdw5hzL a {
  font-style: normal;
}
.cid-rkkmdw5hzL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rkkmdw5hzL .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rkkmdw5hzL .nav-item:focus,
.cid-rkkmdw5hzL .nav-link:focus {
  outline: none;
}
.cid-rkkmdw5hzL .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rkkmdw5hzL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rkkmdw5hzL .menu-logo {
  margin-right: auto;
}
.cid-rkkmdw5hzL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rkkmdw5hzL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rkkmdw5hzL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rkkmdw5hzL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rkkmdw5hzL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rkkmdw5hzL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rkkmdw5hzL .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rkkmdw5hzL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rkkmdw5hzL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rkkmdw5hzL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rkkmdw5hzL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rkkmdw5hzL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rkkmdw5hzL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rkkmdw5hzL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rkkmdw5hzL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rkkmdw5hzL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rkkmdw5hzL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rkkmdw5hzL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rkkmdw5hzL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rkkmdw5hzL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rkkmdw5hzL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rkkmdw5hzL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rkkmdw5hzL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rkkmdw5hzL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rkkmdw5hzL button.navbar-toggler:focus {
  outline: none;
}
.cid-rkkmdw5hzL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rkkmdw5hzL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rkkmdw5hzL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rkkmdw5hzL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rkkmdw5hzL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rkkmdw5hzL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rkkmdw5hzL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rkkmdw5hzL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rkkmdw5hzL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rkkmdw5hzL .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rkkmdw5hzL .collapsed .btn {
  display: -webkit-flex;
}
.cid-rkkmdw5hzL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rkkmdw5hzL .collapsed .navbar-collapse.collapsing,
.cid-rkkmdw5hzL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rkkmdw5hzL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rkkmdw5hzL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rkkmdw5hzL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rkkmdw5hzL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rkkmdw5hzL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rkkmdw5hzL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rkkmdw5hzL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rkkmdw5hzL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rkkmdw5hzL .collapsed button.navbar-toggler {
  display: block;
}
.cid-rkkmdw5hzL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rkkmdw5hzL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rkkmdw5hzL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rkkmdw5hzL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rkkmdw5hzL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rkkmdw5hzL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rkkmdw5hzL.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rkkmdw5hzL img {
    height: 3.8rem !important;
  }
  .cid-rkkmdw5hzL .btn {
    display: -webkit-flex;
  }
  .cid-rkkmdw5hzL button.navbar-toggler {
    display: block;
  }
  .cid-rkkmdw5hzL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rkkmdw5hzL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rkkmdw5hzL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rkkmdw5hzL .navbar-collapse.collapsing,
  .cid-rkkmdw5hzL .navbar-collapse.show {
    display: block !important;
  }
  .cid-rkkmdw5hzL .navbar-collapse.collapsing .navbar-nav,
  .cid-rkkmdw5hzL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rkkmdw5hzL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rkkmdw5hzL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rkkmdw5hzL .navbar-collapse.collapsing .navbar-buttons,
  .cid-rkkmdw5hzL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rkkmdw5hzL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rkkmdw5hzL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rkkmdw5hzL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rkkmdw5hzL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rkkmdw5hzL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rkkmdw5hzL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rkkmdw5hzL .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rkkmdw5hzL .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rkkmdw5hzL .nav-link:hover,
.cid-rkkmdw5hzL .dropdown-item:hover {
  color: #ffa300 !important;
}
.cid-sa0JgOFNU1 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sa0JgOFNU1 P {
  color: #767676;
}
.cid-sa0JgOFNU1 SPAN {
  color: #ffffff;
}
.cid-sa0JgOFNU1 .mbr-text,
.cid-sa0JgOFNU1 .mbr-section-btn {
  color: #232323;
}
.cid-sa0JgOFNU1 H1 {
  color: #232323;
}
.cid-szYX9ScW5Q {
  background: #fafafa;
}
.cid-szYX9ScW5Q .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-szYX9ScW5Q figcaption {
  position: relative;
}
.cid-szYX9ScW5Q figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-szYX9ScW5Q .image-block {
    width: 100% !important;
  }
}
.cid-tYsBZG60qm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-tYsBZG60qm .mbr-section-subtitle {
  color: #767676;
}
.cid-tYsBZG60qm H2 {
  color: #ffffff;
}
.cid-szX4j4AdCj {
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-6-1920x1080.jpg");
}
.cid-szX4j4AdCj P {
  color: #767676;
}
.cid-szX4j4AdCj SPAN {
  color: #ffffff;
}
.cid-szX4j4AdCj .mbr-text,
.cid-szX4j4AdCj .mbr-section-btn {
  color: #ffffff;
}
.cid-szX4j4AdCj H1 {
  color: #ffffff;
}
.cid-szX4j4AdCj H3 {
  color: #ffffff;
}
.cid-tYncfEV0Kb {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYncfEV0Kb img,
.cid-tYncfEV0Kb .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tYncfEV0Kb .item:focus,
.cid-tYncfEV0Kb span:focus {
  outline: none;
}
.cid-tYncfEV0Kb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYncfEV0Kb .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tYncfEV0Kb .item {
  padding: 0;
  margin: 0;
}
.cid-tYncfEV0Kb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa200;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYncfEV0Kb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYncfEV0Kb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYncfEV0Kb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYncfEV0Kb .mbr-section-title {
  color: #232323;
}
.cid-tYncfEV0Kb .mbr-text,
.cid-tYncfEV0Kb .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tYncfEV0Kb .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tYncfEV0Kb .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYncnHebKN {
  padding-top: 105px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/assistencia-tecnica-especializada-banner-recepcao-1920x1080.jpg");
}
.cid-tYncnHebKN P {
  color: #767676;
}
.cid-tYncnHebKN SPAN {
  color: #ffffff;
}
.cid-tYncnHebKN .mbr-text,
.cid-tYncnHebKN .mbr-section-btn {
  color: #ffffff;
}
.cid-tYncnHebKN H1 {
  color: #ffffff;
}
.cid-tYncnHebKN H3 {
  color: #ffffff;
}
.cid-sD46f6ChMU {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sD46f6ChMU .mbr-text {
  color: #c1c1c1;
}
.cid-sD46f6ChMU H3 {
  text-align: center;
  color: #000000;
}
.cid-sD46f6ChMU .mbr-text,
.cid-sD46f6ChMU .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uu2lMlTHrg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uu2lMlTHrg .card-img {
  background-color: #fff;
}
.cid-uu2lMlTHrg .card {
  align-self: stretch;
}
.cid-uu2lMlTHrg .card-box {
  padding: 2rem;
}
.cid-uu2lMlTHrg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu2lMlTHrg p {
  text-align: left;
}
.cid-uu2lMlTHrg .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu2lMlTHrg .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu2lMlTHrg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu2lMlTHrg .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu2lMlTHrg .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu1Zac6H16 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uu1Zac6H16 .card-img {
  background-color: #fff;
}
.cid-uu1Zac6H16 .card {
  align-self: stretch;
}
.cid-uu1Zac6H16 .card-box {
  padding: 2rem;
}
.cid-uu1Zac6H16 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu1Zac6H16 p {
  text-align: left;
}
.cid-uu1Zac6H16 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu1Zac6H16 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu1Zac6H16 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu1Zac6H16 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu1Zac6H16 .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu2lWq3tSE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uu2lWq3tSE .card-img {
  background-color: #fff;
}
.cid-uu2lWq3tSE .card {
  align-self: stretch;
}
.cid-uu2lWq3tSE .card-box {
  padding: 2rem;
}
.cid-uu2lWq3tSE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu2lWq3tSE p {
  text-align: left;
}
.cid-uu2lWq3tSE .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu2lWq3tSE .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu2lWq3tSE .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu2lWq3tSE .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu2lWq3tSE .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu2lXiBPyL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uu2lXiBPyL .card-img {
  background-color: #fff;
}
.cid-uu2lXiBPyL .card {
  align-self: stretch;
}
.cid-uu2lXiBPyL .card-box {
  padding: 2rem;
}
.cid-uu2lXiBPyL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu2lXiBPyL p {
  text-align: left;
}
.cid-uu2lXiBPyL .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu2lXiBPyL .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu2lXiBPyL .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu2lXiBPyL .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu2lXiBPyL .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu1PK4tQMc {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uu1PK4tQMc .mbr-text,
.cid-uu1PK4tQMc blockquote {
  color: #767676;
}
.cid-uu1PK4tQMc .mbr-text P {
  text-align: center;
}
.cid-uu1PK4tQMc .mbr-text {
  color: #084c78;
}
.cid-tYnTMpsa7l {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYnTMpsa7l H1 {
  color: #ffffff;
}
.cid-tYnTMpsa7l H3 {
  color: #ffffff;
}
.cid-tYnTMpsa7l .mbr-text,
.cid-tYnTMpsa7l .mbr-section-btn {
  color: #000000;
}
.cid-tYnTNHem8L {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYnTNHem8L .card-img {
  background-color: #fff;
}
.cid-tYnTNHem8L .card {
  align-self: stretch;
}
.cid-tYnTNHem8L .card-box {
  padding: 2rem;
}
.cid-tYnTNHem8L h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tYnTNHem8L p {
  text-align: left;
}
.cid-tYnTNHem8L .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tYnTNHem8L .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tYnTNHem8L .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tYnTNHem8L .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tYnTNHem8L .card-title {
  text-align: center;
  color: #000000;
}
.cid-ss9fKK5XWH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ss9fKK5XWH H1 {
  color: #084c78;
}
.cid-ss9fKK5XWH H3 {
  color: #084c78;
}
.cid-ss9fKK5XWH .mbr-text,
.cid-ss9fKK5XWH .mbr-section-btn {
  color: #084c78;
}
.cid-ssZbp8jRAX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ssZbp8jRAX .mbr-text,
.cid-ssZbp8jRAX blockquote {
  color: #767676;
}
.cid-ssZbp8jRAX .mbr-text P {
  text-align: center;
}
.cid-ssZbp8jRAX .mbr-text {
  color: #084c78;
}
.cid-szXoBOlxcJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-szXoBOlxcJ img,
.cid-szXoBOlxcJ .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-szXoBOlxcJ .item:focus,
.cid-szXoBOlxcJ span:focus {
  outline: none;
}
.cid-szXoBOlxcJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-szXoBOlxcJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-szXoBOlxcJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-szXoBOlxcJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-szXoBOlxcJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-szXoBOlxcJ .mbr-section-title {
  color: #232323;
}
.cid-szXoBOlxcJ .mbr-text,
.cid-szXoBOlxcJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-szXoBOlxcJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-szXoBOlxcJ .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYnd1XpylH .main_wrapper {
  position: relative;
  height: 38rem;
  width: 100%;
  background-color: #c0c0c0;
}
.cid-tYnd1XpylH .main_wrapper .b_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cid-tYnd1XpylH .main_wrapper .b_wrapper .block {
  height: 300px;
  background-color: #ffffff;
  pointer-events: fill;
}
.cid-tYnd1XpylH .main_wrapper .b_wrapper .block .block_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tYnd1XpylH .google-map {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-tYnd1XpylH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYnd1XpylH .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tYnd1XpylH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYnd1XpylH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tYnd1XpylH .main_wrapper .b_wrapper {
    display: block;
    height: unset;
  }
  .cid-tYnd1XpylH .google-map {
    position: relative;
  }
  .cid-tYnd1XpylH .container {
    max-width: 100%;
    padding: 0;
  }
}
.cid-s3jcofug5R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-s3jcofug5R P {
  color: #767676;
}
.cid-s3jcofug5R SPAN {
  color: #ffffff;
}
.cid-s3jcofug5R .mbr-text,
.cid-s3jcofug5R .mbr-section-btn {
  color: #ffffff;
}
.cid-sDspvUB4I4 {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-sDspvUB4I4 .mbr-text,
.cid-sDspvUB4I4 blockquote {
  color: #767676;
}
.cid-sDspvUB4I4 .mbr-text P {
  text-align: center;
}
.cid-sDspvUB4I4 .mbr-text {
  color: #00497a;
}
.cid-sDshoWWPTc {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-5-1920x1080.jpg");
}
.cid-swShpIimo5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-swShpIimo5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-swShpIimo5 .row {
  flex-direction: row-reverse;
}
.cid-swShpIimo5 img {
  width: 100%;
}
.cid-tYsABazFrR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #11426a;
}
.cid-tYsABazFrR .mbr-text,
.cid-tYsABazFrR blockquote {
  color: #767676;
}
.cid-tYsABazFrR .mbr-text P {
  text-align: center;
}
.cid-tYsABazFrR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sDmlgawt6N .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sDmlgawt6N .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sDmlgawt6N a {
  font-style: normal;
}
.cid-sDmlgawt6N .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sDmlgawt6N .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sDmlgawt6N .nav-item:focus,
.cid-sDmlgawt6N .nav-link:focus {
  outline: none;
}
.cid-sDmlgawt6N .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDmlgawt6N .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sDmlgawt6N .menu-logo {
  margin-right: auto;
}
.cid-sDmlgawt6N .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDmlgawt6N .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sDmlgawt6N .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDmlgawt6N .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDmlgawt6N .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sDmlgawt6N .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDmlgawt6N .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sDmlgawt6N .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sDmlgawt6N .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDmlgawt6N .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDmlgawt6N .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDmlgawt6N .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sDmlgawt6N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sDmlgawt6N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDmlgawt6N .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDmlgawt6N .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDmlgawt6N .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sDmlgawt6N .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sDmlgawt6N .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sDmlgawt6N .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDmlgawt6N .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDmlgawt6N .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sDmlgawt6N .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDmlgawt6N button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sDmlgawt6N button.navbar-toggler:focus {
  outline: none;
}
.cid-sDmlgawt6N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sDmlgawt6N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sDmlgawt6N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sDmlgawt6N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sDmlgawt6N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sDmlgawt6N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDmlgawt6N nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sDmlgawt6N nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sDmlgawt6N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDmlgawt6N .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDmlgawt6N .collapsed .btn {
  display: -webkit-flex;
}
.cid-sDmlgawt6N .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDmlgawt6N .collapsed .navbar-collapse.collapsing,
.cid-sDmlgawt6N .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDmlgawt6N .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDmlgawt6N .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDmlgawt6N .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDmlgawt6N .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDmlgawt6N .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDmlgawt6N .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sDmlgawt6N .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDmlgawt6N .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sDmlgawt6N .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDmlgawt6N .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sDmlgawt6N .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDmlgawt6N .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sDmlgawt6N .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDmlgawt6N .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDmlgawt6N .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sDmlgawt6N.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDmlgawt6N img {
    height: 3.8rem !important;
  }
  .cid-sDmlgawt6N .btn {
    display: -webkit-flex;
  }
  .cid-sDmlgawt6N button.navbar-toggler {
    display: block;
  }
  .cid-sDmlgawt6N .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sDmlgawt6N .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDmlgawt6N .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDmlgawt6N .navbar-collapse.collapsing,
  .cid-sDmlgawt6N .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDmlgawt6N .navbar-collapse.collapsing .navbar-nav,
  .cid-sDmlgawt6N .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDmlgawt6N .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDmlgawt6N .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDmlgawt6N .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDmlgawt6N .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sDmlgawt6N .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDmlgawt6N .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDmlgawt6N .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sDmlgawt6N .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDmlgawt6N .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDmlgawt6N .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sDmlgawt6N .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sDmlgawt6N .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sDmlgawt6N .nav-link:hover,
.cid-sDmlgawt6N .dropdown-item:hover {
  color: #ffa300 !important;
}
.cid-sDmlg5xBFJ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDmlg5xBFJ P {
  color: #767676;
}
.cid-sDmlg5xBFJ SPAN {
  color: #ffffff;
}
.cid-sDmlg5xBFJ .mbr-text,
.cid-sDmlg5xBFJ .mbr-section-btn {
  color: #232323;
}
.cid-sDmlg5xBFJ H1 {
  color: #232323;
}
.cid-sDmlg5Ntop {
  background: #fafafa;
}
.cid-sDmlg5Ntop .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sDmlg5Ntop figcaption {
  position: relative;
}
.cid-sDmlg5Ntop figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sDmlg5Ntop .image-block {
    width: 100% !important;
  }
}
.cid-tYsCqwFiNl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-tYsCqwFiNl .mbr-section-subtitle {
  color: #767676;
}
.cid-tYsCqwFiNl H2 {
  color: #ffffff;
}
.cid-sDmlg5XOa3 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-3-1920x1080.jpg");
}
.cid-sDmlg5XOa3 P {
  color: #767676;
}
.cid-sDmlg5XOa3 SPAN {
  color: #ffffff;
}
.cid-sDmlg5XOa3 .mbr-text,
.cid-sDmlg5XOa3 .mbr-section-btn {
  color: #ffffff;
}
.cid-sDmlg5XOa3 H1 {
  color: #ffffff;
}
.cid-sDmlg5XOa3 H3 {
  color: #ffffff;
}
.cid-tYraK6ruyc {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYraK6ruyc img,
.cid-tYraK6ruyc .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tYraK6ruyc .item:focus,
.cid-tYraK6ruyc span:focus {
  outline: none;
}
.cid-tYraK6ruyc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYraK6ruyc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tYraK6ruyc .item {
  padding: 0;
  margin: 0;
}
.cid-tYraK6ruyc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa200;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYraK6ruyc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYraK6ruyc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYraK6ruyc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYraK6ruyc .mbr-section-title {
  color: #232323;
}
.cid-tYraK6ruyc .mbr-text,
.cid-tYraK6ruyc .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tYraK6ruyc .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tYraK6ruyc .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYspSLvkjL {
  padding-top: 105px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/assistencia-tecnica-especializada-banner-recepcao-1920x1080.jpg");
}
.cid-tYspSLvkjL P {
  color: #767676;
}
.cid-tYspSLvkjL SPAN {
  color: #ffffff;
}
.cid-tYspSLvkjL .mbr-text,
.cid-tYspSLvkjL .mbr-section-btn {
  color: #ffffff;
}
.cid-tYspSLvkjL H1 {
  color: #ffffff;
}
.cid-tYspSLvkjL H3 {
  color: #ffffff;
}
.cid-sDmlg6FTcS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sDmlg6FTcS P {
  color: #767676;
}
.cid-sDmlg6FTcS SPAN {
  color: #ffffff;
}
.cid-sDmlg6FTcS .mbr-text,
.cid-sDmlg6FTcS .mbr-section-btn {
  color: #000000;
}
.cid-sDmlg6FTcS H1 {
  color: #232323;
}
.cid-sDs2Kx5Eul {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #00497a;
}
.cid-sDs2Kx5Eul .mbr-text {
  color: #c1c1c1;
}
.cid-sDs2Kx5Eul H3 {
  text-align: center;
  color: #ffffff;
}
.cid-sDs2Kx5Eul .mbr-text,
.cid-sDs2Kx5Eul .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sDrDWA1DLI {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #00497a;
}
.cid-sDrDWA1DLI H1 {
  color: #ffffff;
  text-align: left;
}
.cid-sDrDWA1DLI H3 {
  color: #ffffff;
}
.cid-sDrDWA1DLI .mbr-text,
.cid-sDrDWA1DLI .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ut7edtoVqN {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ut7edtoVqN .mbr-text {
  color: #c1c1c1;
}
.cid-ut7edtoVqN H3 {
  text-align: center;
  color: #084c78;
}
.cid-ut7edtoVqN .mbr-text,
.cid-ut7edtoVqN .mbr-section-btn {
  text-align: center;
  color: #084c78;
}
.cid-uu2oBmD8c1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uu2oBmD8c1 .card-img {
  background-color: #fff;
}
.cid-uu2oBmD8c1 .card {
  align-self: stretch;
}
.cid-uu2oBmD8c1 .card-box {
  padding: 2rem;
}
.cid-uu2oBmD8c1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu2oBmD8c1 p {
  text-align: left;
}
.cid-uu2oBmD8c1 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu2oBmD8c1 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu2oBmD8c1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu2oBmD8c1 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu2oBmD8c1 .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu2oCgaA86 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uu2oCgaA86 .card-img {
  background-color: #fff;
}
.cid-uu2oCgaA86 .card {
  align-self: stretch;
}
.cid-uu2oCgaA86 .card-box {
  padding: 2rem;
}
.cid-uu2oCgaA86 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu2oCgaA86 p {
  text-align: left;
}
.cid-uu2oCgaA86 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu2oCgaA86 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu2oCgaA86 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu2oCgaA86 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu2oCgaA86 .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu2oD1Wtgb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uu2oD1Wtgb .card-img {
  background-color: #fff;
}
.cid-uu2oD1Wtgb .card {
  align-self: stretch;
}
.cid-uu2oD1Wtgb .card-box {
  padding: 2rem;
}
.cid-uu2oD1Wtgb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu2oD1Wtgb p {
  text-align: left;
}
.cid-uu2oD1Wtgb .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu2oD1Wtgb .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu2oD1Wtgb .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu2oD1Wtgb .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu2oD1Wtgb .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu2oDtX78A {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uu2oDtX78A .card-img {
  background-color: #fff;
}
.cid-uu2oDtX78A .card {
  align-self: stretch;
}
.cid-uu2oDtX78A .card-box {
  padding: 2rem;
}
.cid-uu2oDtX78A h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uu2oDtX78A p {
  text-align: left;
}
.cid-uu2oDtX78A .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uu2oDtX78A .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uu2oDtX78A .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uu2oDtX78A .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uu2oDtX78A .card-title {
  text-align: center;
  color: #000000;
}
.cid-sDs2VJsbeu {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #00497a;
}
.cid-sDs2VJsbeu H1 {
  color: #ffffff;
  text-align: left;
}
.cid-sDs2VJsbeu H3 {
  color: #ffffff;
  text-align: left;
}
.cid-sDs2VJsbeu .mbr-text,
.cid-sDs2VJsbeu .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uu1SWzNzQc {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uu1SWzNzQc .mbr-text,
.cid-uu1SWzNzQc blockquote {
  color: #767676;
}
.cid-uu1SWzNzQc .mbr-text P {
  text-align: center;
}
.cid-uu1SWzNzQc .mbr-text {
  color: #00497a;
}
.cid-tYspm1ksTa {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYspm1ksTa H1 {
  color: #ffffff;
}
.cid-tYspm1ksTa H3 {
  color: #ffffff;
}
.cid-tYspm1ksTa .mbr-text,
.cid-tYspm1ksTa .mbr-section-btn {
  color: #000000;
}
.cid-tYspmJzUFR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYspmJzUFR .card-img {
  background-color: #fff;
}
.cid-tYspmJzUFR .card {
  align-self: stretch;
}
.cid-tYspmJzUFR .card-box {
  padding: 2rem;
}
.cid-tYspmJzUFR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tYspmJzUFR p {
  text-align: left;
}
.cid-tYspmJzUFR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tYspmJzUFR .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tYspmJzUFR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tYspmJzUFR .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tYspmJzUFR .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu1wNVQXCt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uu1wNVQXCt img,
.cid-uu1wNVQXCt .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uu1wNVQXCt .item:focus,
.cid-uu1wNVQXCt span:focus {
  outline: none;
}
.cid-uu1wNVQXCt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uu1wNVQXCt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uu1wNVQXCt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu1wNVQXCt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uu1wNVQXCt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uu1wNVQXCt .mbr-section-title {
  color: #232323;
}
.cid-uu1wNVQXCt .mbr-text,
.cid-uu1wNVQXCt .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uu1wNVQXCt .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uu1wNVQXCt .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sDshtdKuo0 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-5-1920x1080.jpg");
}
.cid-sDsfoxl5fm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-sDsfoxl5fm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDsfoxl5fm .row {
  flex-direction: row-reverse;
}
.cid-sDsfoxl5fm img {
  width: 100%;
}
.cid-sDmlgdqzUz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDmlgdqzUz P {
  color: #767676;
}
.cid-sDmlgdqzUz SPAN {
  color: #ffffff;
}
.cid-sDmlgdqzUz .mbr-text,
.cid-sDmlgdqzUz .mbr-section-btn {
  color: #ffffff;
}
.cid-tYsAH6FWZx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #11426a;
}
.cid-tYsAH6FWZx .mbr-text,
.cid-tYsAH6FWZx blockquote {
  color: #767676;
}
.cid-tYsAH6FWZx .mbr-text P {
  text-align: center;
}
.cid-tYsAH6FWZx .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sDJJeejR9V .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sDJJeejR9V .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sDJJeejR9V a {
  font-style: normal;
}
.cid-sDJJeejR9V .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sDJJeejR9V .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sDJJeejR9V .nav-item:focus,
.cid-sDJJeejR9V .nav-link:focus {
  outline: none;
}
.cid-sDJJeejR9V .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDJJeejR9V .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sDJJeejR9V .menu-logo {
  margin-right: auto;
}
.cid-sDJJeejR9V .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDJJeejR9V .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sDJJeejR9V .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDJJeejR9V .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDJJeejR9V .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sDJJeejR9V .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDJJeejR9V .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sDJJeejR9V .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sDJJeejR9V .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDJJeejR9V .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDJJeejR9V .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDJJeejR9V .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sDJJeejR9V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sDJJeejR9V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDJJeejR9V .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDJJeejR9V .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDJJeejR9V .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sDJJeejR9V .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sDJJeejR9V .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sDJJeejR9V .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDJJeejR9V .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDJJeejR9V .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sDJJeejR9V .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDJJeejR9V button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sDJJeejR9V button.navbar-toggler:focus {
  outline: none;
}
.cid-sDJJeejR9V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sDJJeejR9V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sDJJeejR9V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sDJJeejR9V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sDJJeejR9V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sDJJeejR9V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDJJeejR9V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sDJJeejR9V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sDJJeejR9V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDJJeejR9V .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDJJeejR9V .collapsed .btn {
  display: -webkit-flex;
}
.cid-sDJJeejR9V .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDJJeejR9V .collapsed .navbar-collapse.collapsing,
.cid-sDJJeejR9V .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDJJeejR9V .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDJJeejR9V .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDJJeejR9V .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDJJeejR9V .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDJJeejR9V .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDJJeejR9V .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sDJJeejR9V .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDJJeejR9V .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sDJJeejR9V .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDJJeejR9V .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sDJJeejR9V .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDJJeejR9V .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sDJJeejR9V .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDJJeejR9V .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDJJeejR9V .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sDJJeejR9V.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDJJeejR9V img {
    height: 3.8rem !important;
  }
  .cid-sDJJeejR9V .btn {
    display: -webkit-flex;
  }
  .cid-sDJJeejR9V button.navbar-toggler {
    display: block;
  }
  .cid-sDJJeejR9V .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sDJJeejR9V .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDJJeejR9V .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDJJeejR9V .navbar-collapse.collapsing,
  .cid-sDJJeejR9V .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDJJeejR9V .navbar-collapse.collapsing .navbar-nav,
  .cid-sDJJeejR9V .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDJJeejR9V .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDJJeejR9V .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDJJeejR9V .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDJJeejR9V .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sDJJeejR9V .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDJJeejR9V .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDJJeejR9V .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sDJJeejR9V .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDJJeejR9V .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDJJeejR9V .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sDJJeejR9V .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sDJJeejR9V .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sDJJeejR9V .nav-link:hover,
.cid-sDJJeejR9V .dropdown-item:hover {
  color: #ffa300 !important;
}
.cid-sDJJeaCyGm {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDJJeaCyGm P {
  color: #767676;
}
.cid-sDJJeaCyGm SPAN {
  color: #ffffff;
}
.cid-sDJJeaCyGm .mbr-text,
.cid-sDJJeaCyGm .mbr-section-btn {
  color: #232323;
}
.cid-sDJJeaCyGm H1 {
  color: #232323;
}
.cid-sDJJebFhs6 {
  background: #fafafa;
}
.cid-sDJJebFhs6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sDJJebFhs6 figcaption {
  position: relative;
}
.cid-sDJJebFhs6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sDJJebFhs6 .image-block {
    width: 100% !important;
  }
}
.cid-tYsLi2J1Yu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-tYsLi2J1Yu .mbr-section-subtitle {
  color: #767676;
}
.cid-tYsLi2J1Yu H2 {
  color: #ffffff;
}
.cid-sDJJectIdv {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #00497a;
}
.cid-sDJJectIdv P {
  color: #767676;
}
.cid-sDJJectIdv SPAN {
  color: #ffffff;
}
.cid-sDJJectIdv .mbr-text,
.cid-sDJJectIdv .mbr-section-btn {
  color: #ffffff;
}
.cid-sDJJectIdv H1 {
  color: #ffffff;
}
.cid-sDJJectIdv H3 {
  color: #ffffff;
}
.cid-tYsqm3AmAa {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYsqm3AmAa img,
.cid-tYsqm3AmAa .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tYsqm3AmAa .item:focus,
.cid-tYsqm3AmAa span:focus {
  outline: none;
}
.cid-tYsqm3AmAa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYsqm3AmAa .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tYsqm3AmAa .item {
  padding: 0;
  margin: 0;
}
.cid-tYsqm3AmAa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa200;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYsqm3AmAa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYsqm3AmAa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYsqm3AmAa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYsqm3AmAa .mbr-section-title {
  color: #232323;
}
.cid-tYsqm3AmAa .mbr-text,
.cid-tYsqm3AmAa .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tYsqm3AmAa .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tYsqm3AmAa .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sDJJedj6Tq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-sDJJedj6Tq H1 {
  color: #ffffff;
}
.cid-sDJJedj6Tq H3 {
  color: #ffffff;
}
.cid-sDJJedj6Tq .mbr-text,
.cid-sDJJedj6Tq .mbr-section-btn {
  color: #ffffff;
}
.cid-sDJJedxx0Y {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #00497a;
}
.cid-sDJJedxx0Y H1 {
  color: #ffffff;
}
.cid-sDJJedxx0Y H3 {
  color: #ffffff;
}
.cid-sDJJedxx0Y .mbr-text,
.cid-sDJJedxx0Y .mbr-section-btn {
  color: #ffffff;
}
.cid-sDJJedJFVS {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #11426a;
}
.cid-sDJJedJFVS .mbr-text {
  color: #c1c1c1;
}
.cid-sDJJedJFVS H3 {
  text-align: center;
  color: #ffffff;
}
.cid-sDJJedJFVS .mbr-text,
.cid-sDJJedJFVS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uu1T6c57dn {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uu1T6c57dn .mbr-text,
.cid-uu1T6c57dn blockquote {
  color: #767676;
}
.cid-uu1T6c57dn .mbr-text P {
  text-align: center;
}
.cid-uu1T6c57dn .mbr-text {
  color: #00497a;
}
.cid-tYsSYnqqNN {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYsSYnqqNN H1 {
  color: #ffffff;
}
.cid-tYsSYnqqNN H3 {
  color: #ffffff;
}
.cid-tYsSYnqqNN .mbr-text,
.cid-tYsSYnqqNN .mbr-section-btn {
  color: #000000;
}
.cid-tYsSZ9U0U0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYsSZ9U0U0 .card-img {
  background-color: #fff;
}
.cid-tYsSZ9U0U0 .card {
  align-self: stretch;
}
.cid-tYsSZ9U0U0 .card-box {
  padding: 2rem;
}
.cid-tYsSZ9U0U0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tYsSZ9U0U0 p {
  text-align: left;
}
.cid-tYsSZ9U0U0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tYsSZ9U0U0 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tYsSZ9U0U0 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tYsSZ9U0U0 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tYsSZ9U0U0 .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu1x32jyfm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uu1x32jyfm img,
.cid-uu1x32jyfm .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uu1x32jyfm .item:focus,
.cid-uu1x32jyfm span:focus {
  outline: none;
}
.cid-uu1x32jyfm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uu1x32jyfm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uu1x32jyfm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu1x32jyfm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uu1x32jyfm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uu1x32jyfm .mbr-section-title {
  color: #232323;
}
.cid-uu1x32jyfm .mbr-text,
.cid-uu1x32jyfm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uu1x32jyfm .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uu1x32jyfm .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYsqUDKiIW .main_wrapper {
  position: relative;
  height: 38rem;
  width: 100%;
  background-color: #c0c0c0;
}
.cid-tYsqUDKiIW .main_wrapper .b_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cid-tYsqUDKiIW .main_wrapper .b_wrapper .block {
  height: 300px;
  background-color: #ffffff;
  pointer-events: fill;
}
.cid-tYsqUDKiIW .main_wrapper .b_wrapper .block .block_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tYsqUDKiIW .google-map {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-tYsqUDKiIW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYsqUDKiIW .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tYsqUDKiIW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYsqUDKiIW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tYsqUDKiIW .main_wrapper .b_wrapper {
    display: block;
    height: unset;
  }
  .cid-tYsqUDKiIW .google-map {
    position: relative;
  }
  .cid-tYsqUDKiIW .container {
    max-width: 100%;
    padding: 0;
  }
}
.cid-sDJJeikZoe {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-5-1920x1080.jpg");
}
.cid-sDJJeikZoe .mbr-section-title {
  color: #ffffff;
}
.cid-sDJJeikZoe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sDJJeikZoe .mbr-text,
.cid-sDJJeikZoe .mbr-section-btn {
  color: #ffffff;
}
.cid-sDJJeiHp5c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDJJeiHp5c P {
  color: #767676;
}
.cid-sDJJeiHp5c SPAN {
  color: #ffffff;
}
.cid-sDJJeiHp5c .mbr-text,
.cid-sDJJeiHp5c .mbr-section-btn {
  color: #ffffff;
}
.cid-sDJJeiYedy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-sDJJeiYedy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDJJeiYedy .row {
  flex-direction: row-reverse;
}
.cid-sDJJeiYedy img {
  width: 100%;
}
.cid-tYsrfWgHmC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #11426a;
}
.cid-tYsrfWgHmC .mbr-text,
.cid-tYsrfWgHmC blockquote {
  color: #767676;
}
.cid-tYsrfWgHmC .mbr-text P {
  text-align: center;
}
.cid-tYsrfWgHmC .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sDmleDIfOQ .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sDmleDIfOQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sDmleDIfOQ a {
  font-style: normal;
}
.cid-sDmleDIfOQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sDmleDIfOQ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sDmleDIfOQ .nav-item:focus,
.cid-sDmleDIfOQ .nav-link:focus {
  outline: none;
}
.cid-sDmleDIfOQ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDmleDIfOQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sDmleDIfOQ .menu-logo {
  margin-right: auto;
}
.cid-sDmleDIfOQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDmleDIfOQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sDmleDIfOQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDmleDIfOQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDmleDIfOQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sDmleDIfOQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDmleDIfOQ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sDmleDIfOQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sDmleDIfOQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDmleDIfOQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDmleDIfOQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDmleDIfOQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sDmleDIfOQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sDmleDIfOQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDmleDIfOQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDmleDIfOQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDmleDIfOQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sDmleDIfOQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sDmleDIfOQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sDmleDIfOQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDmleDIfOQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDmleDIfOQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sDmleDIfOQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDmleDIfOQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sDmleDIfOQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sDmleDIfOQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sDmleDIfOQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sDmleDIfOQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sDmleDIfOQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sDmleDIfOQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sDmleDIfOQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDmleDIfOQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sDmleDIfOQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sDmleDIfOQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDmleDIfOQ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDmleDIfOQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sDmleDIfOQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDmleDIfOQ .collapsed .navbar-collapse.collapsing,
.cid-sDmleDIfOQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDmleDIfOQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDmleDIfOQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDmleDIfOQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDmleDIfOQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDmleDIfOQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDmleDIfOQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sDmleDIfOQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDmleDIfOQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sDmleDIfOQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDmleDIfOQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sDmleDIfOQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDmleDIfOQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sDmleDIfOQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDmleDIfOQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDmleDIfOQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sDmleDIfOQ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDmleDIfOQ img {
    height: 3.8rem !important;
  }
  .cid-sDmleDIfOQ .btn {
    display: -webkit-flex;
  }
  .cid-sDmleDIfOQ button.navbar-toggler {
    display: block;
  }
  .cid-sDmleDIfOQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sDmleDIfOQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDmleDIfOQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDmleDIfOQ .navbar-collapse.collapsing,
  .cid-sDmleDIfOQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDmleDIfOQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sDmleDIfOQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDmleDIfOQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDmleDIfOQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDmleDIfOQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDmleDIfOQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sDmleDIfOQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDmleDIfOQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDmleDIfOQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sDmleDIfOQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDmleDIfOQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDmleDIfOQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sDmleDIfOQ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sDmleDIfOQ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sDmleDIfOQ .nav-link:hover,
.cid-sDmleDIfOQ .dropdown-item:hover {
  color: #ffa300 !important;
}
.cid-sDmleyIIr0 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDmleyIIr0 P {
  color: #767676;
}
.cid-sDmleyIIr0 SPAN {
  color: #ffffff;
}
.cid-sDmleyIIr0 .mbr-text,
.cid-sDmleyIIr0 .mbr-section-btn {
  color: #232323;
}
.cid-sDmleyIIr0 H1 {
  color: #232323;
}
.cid-sDmleyXYkL {
  background: #fafafa;
}
.cid-sDmleyXYkL .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sDmleyXYkL figcaption {
  position: relative;
}
.cid-sDmleyXYkL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sDmleyXYkL .image-block {
    width: 100% !important;
  }
}
.cid-tYsNpwjAsR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-tYsNpwjAsR .mbr-section-subtitle {
  color: #767676;
}
.cid-tYsNpwjAsR H2 {
  color: #ffffff;
}
.cid-sDriyGH91B {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/assistencia-tecnica-especializada-banner-recepcao-1920x1080.jpg");
}
.cid-sDriyGH91B H1 {
  color: #ffffff;
}
.cid-sDriyGH91B H3 {
  color: #ffffff;
}
.cid-sDriyGH91B .mbr-text,
.cid-sDriyGH91B .mbr-section-btn {
  color: #ffffff;
}
.cid-tYDvdgpbpz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tYDvdgpbpz .mbr-text {
  color: #084c78;
}
.cid-tYDvdgpbpz h4 {
  text-align: center;
}
.cid-tYDvdgpbpz p {
  text-align: center;
}
.cid-tYDvdgpbpz .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tYDvdgpbpz .card-title,
.cid-tYDvdgpbpz .card-img {
  color: #084c78;
}
.cid-tYtmoT1lwI {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYtmoT1lwI img,
.cid-tYtmoT1lwI .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tYtmoT1lwI .item:focus,
.cid-tYtmoT1lwI span:focus {
  outline: none;
}
.cid-tYtmoT1lwI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYtmoT1lwI .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tYtmoT1lwI .item {
  padding: 0;
  margin: 0;
}
.cid-tYtmoT1lwI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa200;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYtmoT1lwI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYtmoT1lwI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYtmoT1lwI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYtmoT1lwI .mbr-section-title {
  color: #232323;
}
.cid-tYtmoT1lwI .mbr-text,
.cid-tYtmoT1lwI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tYtmoT1lwI .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tYtmoT1lwI .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYDttDVjys {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYDttDVjys H1 {
  color: #ffffff;
}
.cid-tYDttDVjys H3 {
  color: #ffffff;
}
.cid-tYDttDVjys .mbr-text,
.cid-tYDttDVjys .mbr-section-btn {
  color: #000000;
}
.cid-tYDtuhQiEF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYDtuhQiEF .card-img {
  background-color: #fff;
}
.cid-tYDtuhQiEF .card {
  align-self: stretch;
}
.cid-tYDtuhQiEF .card-box {
  padding: 2rem;
}
.cid-tYDtuhQiEF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tYDtuhQiEF p {
  text-align: left;
}
.cid-tYDtuhQiEF .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tYDtuhQiEF .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tYDtuhQiEF .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tYDtuhQiEF .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tYDtuhQiEF .card-title {
  text-align: center;
  color: #000000;
}
.cid-sDru0KCH2v {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffa300;
}
.cid-sDru0KCH2v .mbr-text {
  color: #c1c1c1;
}
.cid-sDru0KCH2v H3 {
  text-align: center;
  color: #ffffff;
}
.cid-sDru0KCH2v .mbr-text,
.cid-sDru0KCH2v .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sDrujhwBJ8 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sDrujhwBJ8 .card-img {
  background-color: #fff;
}
.cid-sDrujhwBJ8 .card {
  align-self: stretch;
}
.cid-sDrujhwBJ8 .card-box {
  padding: 2rem;
}
.cid-sDrujhwBJ8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sDrujhwBJ8 p {
  text-align: left;
}
.cid-sDrujhwBJ8 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sDrujhwBJ8 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sDrujhwBJ8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sDrujhwBJ8 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sDrujhwBJ8 .card-title {
  text-align: center;
  color: #000000;
}
.cid-sDrug7okKL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sDrug7okKL .card-img {
  background-color: #fff;
}
.cid-sDrug7okKL .card {
  align-self: stretch;
}
.cid-sDrug7okKL .card-box {
  padding: 2rem;
}
.cid-sDrug7okKL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sDrug7okKL p {
  text-align: left;
}
.cid-sDrug7okKL .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sDrug7okKL .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sDrug7okKL .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sDrug7okKL .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sDrug7okKL .card-title {
  text-align: center;
  color: #000000;
}
.cid-sDrugSBKaR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sDrugSBKaR .card-img {
  background-color: #fff;
}
.cid-sDrugSBKaR .card {
  align-self: stretch;
}
.cid-sDrugSBKaR .card-box {
  padding: 2rem;
}
.cid-sDrugSBKaR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sDrugSBKaR p {
  text-align: left;
}
.cid-sDrugSBKaR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sDrugSBKaR .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sDrugSBKaR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sDrugSBKaR .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sDrugSBKaR .card-title {
  text-align: center;
  color: #000000;
}
.cid-ut7j05l9YE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ut7j05l9YE .mbr-text {
  color: #c1c1c1;
}
.cid-ut7j05l9YE H3 {
  text-align: center;
  color: #084c78;
}
.cid-ut7j05l9YE .mbr-text,
.cid-ut7j05l9YE .mbr-section-btn {
  text-align: center;
  color: #084c78;
}
.cid-tYDw9c7A4R .main_wrapper {
  position: relative;
  height: 38rem;
  width: 100%;
  background-color: #c0c0c0;
}
.cid-tYDw9c7A4R .main_wrapper .b_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cid-tYDw9c7A4R .main_wrapper .b_wrapper .block {
  height: 300px;
  background-color: #ffffff;
  pointer-events: fill;
}
.cid-tYDw9c7A4R .main_wrapper .b_wrapper .block .block_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tYDw9c7A4R .google-map {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-tYDw9c7A4R .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYDw9c7A4R .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tYDw9c7A4R .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYDw9c7A4R .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tYDw9c7A4R .main_wrapper .b_wrapper {
    display: block;
    height: unset;
  }
  .cid-tYDw9c7A4R .google-map {
    position: relative;
  }
  .cid-tYDw9c7A4R .container {
    max-width: 100%;
    padding: 0;
  }
}
.cid-ut7j7o0ubh {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-5-1920x1080.jpg");
}
.cid-sDmleGBvdF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDmleGBvdF P {
  color: #767676;
}
.cid-sDmleGBvdF SPAN {
  color: #ffffff;
}
.cid-sDmleGBvdF .mbr-text,
.cid-sDmleGBvdF .mbr-section-btn {
  color: #ffffff;
}
.cid-sDmleGSMJ1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-sDmleGSMJ1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDmleGSMJ1 .row {
  flex-direction: row-reverse;
}
.cid-sDmleGSMJ1 img {
  width: 100%;
}
.cid-tYsApdVLEL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #11426a;
}
.cid-tYsApdVLEL .mbr-text,
.cid-tYsApdVLEL blockquote {
  color: #767676;
}
.cid-tYsApdVLEL .mbr-text P {
  text-align: center;
}
.cid-tYsApdVLEL .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sDmlcvVa13 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sDmlcvVa13 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sDmlcvVa13 a {
  font-style: normal;
}
.cid-sDmlcvVa13 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sDmlcvVa13 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sDmlcvVa13 .nav-item:focus,
.cid-sDmlcvVa13 .nav-link:focus {
  outline: none;
}
.cid-sDmlcvVa13 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDmlcvVa13 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sDmlcvVa13 .menu-logo {
  margin-right: auto;
}
.cid-sDmlcvVa13 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDmlcvVa13 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sDmlcvVa13 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDmlcvVa13 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDmlcvVa13 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sDmlcvVa13 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDmlcvVa13 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sDmlcvVa13 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sDmlcvVa13 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDmlcvVa13 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDmlcvVa13 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDmlcvVa13 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sDmlcvVa13 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sDmlcvVa13 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDmlcvVa13 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDmlcvVa13 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDmlcvVa13 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sDmlcvVa13 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sDmlcvVa13 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sDmlcvVa13 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDmlcvVa13 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDmlcvVa13 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sDmlcvVa13 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDmlcvVa13 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sDmlcvVa13 button.navbar-toggler:focus {
  outline: none;
}
.cid-sDmlcvVa13 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sDmlcvVa13 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sDmlcvVa13 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sDmlcvVa13 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sDmlcvVa13 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sDmlcvVa13 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDmlcvVa13 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sDmlcvVa13 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sDmlcvVa13 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDmlcvVa13 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDmlcvVa13 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sDmlcvVa13 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDmlcvVa13 .collapsed .navbar-collapse.collapsing,
.cid-sDmlcvVa13 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDmlcvVa13 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDmlcvVa13 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDmlcvVa13 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDmlcvVa13 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDmlcvVa13 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDmlcvVa13 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sDmlcvVa13 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDmlcvVa13 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sDmlcvVa13 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDmlcvVa13 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sDmlcvVa13 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDmlcvVa13 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sDmlcvVa13 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDmlcvVa13 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDmlcvVa13 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sDmlcvVa13.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDmlcvVa13 img {
    height: 3.8rem !important;
  }
  .cid-sDmlcvVa13 .btn {
    display: -webkit-flex;
  }
  .cid-sDmlcvVa13 button.navbar-toggler {
    display: block;
  }
  .cid-sDmlcvVa13 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sDmlcvVa13 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDmlcvVa13 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDmlcvVa13 .navbar-collapse.collapsing,
  .cid-sDmlcvVa13 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDmlcvVa13 .navbar-collapse.collapsing .navbar-nav,
  .cid-sDmlcvVa13 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDmlcvVa13 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDmlcvVa13 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDmlcvVa13 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDmlcvVa13 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sDmlcvVa13 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDmlcvVa13 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDmlcvVa13 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sDmlcvVa13 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDmlcvVa13 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDmlcvVa13 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sDmlcvVa13 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sDmlcvVa13 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sDmlcvVa13 .nav-link:hover,
.cid-sDmlcvVa13 .dropdown-item:hover {
  color: #ffa300 !important;
}
.cid-sDmlcqU7h0 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDmlcqU7h0 P {
  color: #767676;
}
.cid-sDmlcqU7h0 SPAN {
  color: #ffffff;
}
.cid-sDmlcqU7h0 .mbr-text,
.cid-sDmlcqU7h0 .mbr-section-btn {
  color: #232323;
}
.cid-sDmlcqU7h0 H1 {
  color: #232323;
}
.cid-sDmlcr90wr {
  background: #fafafa;
}
.cid-sDmlcr90wr .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sDmlcr90wr figcaption {
  position: relative;
}
.cid-sDmlcr90wr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sDmlcr90wr .image-block {
    width: 100% !important;
  }
}
.cid-tYsNnITvhL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-tYsNnITvhL .mbr-section-subtitle {
  color: #767676;
}
.cid-tYsNnITvhL H2 {
  color: #ffffff;
}
.cid-sDryfEkHa3 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-4-1920x1080.jpg");
}
.cid-sDryfEkHa3 H1 {
  color: #ffffff;
}
.cid-sDryfEkHa3 H3 {
  color: #ffffff;
}
.cid-sDryfEkHa3 .mbr-text,
.cid-sDryfEkHa3 .mbr-section-btn {
  color: #ffffff;
}
.cid-tYtm7auNL7 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYtm7auNL7 img,
.cid-tYtm7auNL7 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tYtm7auNL7 .item:focus,
.cid-tYtm7auNL7 span:focus {
  outline: none;
}
.cid-tYtm7auNL7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYtm7auNL7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tYtm7auNL7 .item {
  padding: 0;
  margin: 0;
}
.cid-tYtm7auNL7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa200;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYtm7auNL7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYtm7auNL7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYtm7auNL7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYtm7auNL7 .mbr-section-title {
  color: #232323;
}
.cid-tYtm7auNL7 .mbr-text,
.cid-tYtm7auNL7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tYtm7auNL7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tYtm7auNL7 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYDsWhwErp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYDsWhwErp H1 {
  color: #ffffff;
}
.cid-tYDsWhwErp H3 {
  color: #ffffff;
}
.cid-tYDsWhwErp .mbr-text,
.cid-tYDsWhwErp .mbr-section-btn {
  color: #000000;
}
.cid-tYDsWSUd7x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00497a;
}
.cid-tYDsWSUd7x .card-img {
  background-color: #fff;
}
.cid-tYDsWSUd7x .card {
  align-self: stretch;
}
.cid-tYDsWSUd7x .card-box {
  padding: 2rem;
}
.cid-tYDsWSUd7x h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tYDsWSUd7x p {
  text-align: left;
}
.cid-tYDsWSUd7x .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tYDsWSUd7x .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tYDsWSUd7x .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tYDsWSUd7x .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tYDsWSUd7x .card-title {
  text-align: center;
  color: #000000;
}
.cid-uu1xghQ09o {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uu1xghQ09o img,
.cid-uu1xghQ09o .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uu1xghQ09o .item:focus,
.cid-uu1xghQ09o span:focus {
  outline: none;
}
.cid-uu1xghQ09o .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uu1xghQ09o .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uu1xghQ09o .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu1xghQ09o .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uu1xghQ09o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uu1xghQ09o .mbr-section-title {
  color: #232323;
}
.cid-uu1xghQ09o .mbr-text,
.cid-uu1xghQ09o .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uu1xghQ09o .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uu1xghQ09o .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYE8grCuCm .main_wrapper {
  position: relative;
  height: 38rem;
  width: 100%;
  background-color: #c0c0c0;
}
.cid-tYE8grCuCm .main_wrapper .b_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cid-tYE8grCuCm .main_wrapper .b_wrapper .block {
  height: 300px;
  background-color: #ffffff;
  pointer-events: fill;
}
.cid-tYE8grCuCm .main_wrapper .b_wrapper .block .block_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tYE8grCuCm .google-map {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-tYE8grCuCm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYE8grCuCm .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tYE8grCuCm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYE8grCuCm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tYE8grCuCm .main_wrapper .b_wrapper {
    display: block;
    height: unset;
  }
  .cid-tYE8grCuCm .google-map {
    position: relative;
  }
  .cid-tYE8grCuCm .container {
    max-width: 100%;
    padding: 0;
  }
}
.cid-ut7heHSlsM {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ut7heHSlsM .mbr-text {
  color: #c1c1c1;
}
.cid-ut7heHSlsM H3 {
  text-align: center;
  color: #084c78;
}
.cid-ut7heHSlsM .mbr-text,
.cid-ut7heHSlsM .mbr-section-btn {
  text-align: center;
  color: #084c78;
}
.cid-sDmlcyKjY0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDmlcyKjY0 P {
  color: #767676;
}
.cid-sDmlcyKjY0 SPAN {
  color: #ffffff;
}
.cid-sDmlcyKjY0 .mbr-text,
.cid-sDmlcyKjY0 .mbr-section-btn {
  color: #ffffff;
}
.cid-ut7hABuUf2 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-5-1920x1080.jpg");
}
.cid-sDmlcz0cGt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-sDmlcz0cGt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDmlcz0cGt .row {
  flex-direction: row-reverse;
}
.cid-sDmlcz0cGt img {
  width: 100%;
}
.cid-tYsAhnG21e {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #11426a;
}
.cid-tYsAhnG21e .mbr-text,
.cid-tYsAhnG21e blockquote {
  color: #767676;
}
.cid-tYsAhnG21e .mbr-text P {
  text-align: center;
}
.cid-tYsAhnG21e .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sDml6gb5F7 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sDml6gb5F7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sDml6gb5F7 a {
  font-style: normal;
}
.cid-sDml6gb5F7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sDml6gb5F7 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sDml6gb5F7 .nav-item:focus,
.cid-sDml6gb5F7 .nav-link:focus {
  outline: none;
}
.cid-sDml6gb5F7 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDml6gb5F7 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sDml6gb5F7 .menu-logo {
  margin-right: auto;
}
.cid-sDml6gb5F7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDml6gb5F7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sDml6gb5F7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDml6gb5F7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDml6gb5F7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sDml6gb5F7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDml6gb5F7 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sDml6gb5F7 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sDml6gb5F7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDml6gb5F7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDml6gb5F7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDml6gb5F7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sDml6gb5F7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sDml6gb5F7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDml6gb5F7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDml6gb5F7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDml6gb5F7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sDml6gb5F7 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sDml6gb5F7 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sDml6gb5F7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDml6gb5F7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDml6gb5F7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sDml6gb5F7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDml6gb5F7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sDml6gb5F7 button.navbar-toggler:focus {
  outline: none;
}
.cid-sDml6gb5F7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sDml6gb5F7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sDml6gb5F7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sDml6gb5F7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sDml6gb5F7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sDml6gb5F7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDml6gb5F7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sDml6gb5F7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sDml6gb5F7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sDml6gb5F7 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDml6gb5F7 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sDml6gb5F7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDml6gb5F7 .collapsed .navbar-collapse.collapsing,
.cid-sDml6gb5F7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDml6gb5F7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDml6gb5F7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDml6gb5F7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDml6gb5F7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDml6gb5F7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDml6gb5F7 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sDml6gb5F7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDml6gb5F7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sDml6gb5F7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDml6gb5F7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sDml6gb5F7 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sDml6gb5F7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sDml6gb5F7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDml6gb5F7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDml6gb5F7 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sDml6gb5F7.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDml6gb5F7 img {
    height: 3.8rem !important;
  }
  .cid-sDml6gb5F7 .btn {
    display: -webkit-flex;
  }
  .cid-sDml6gb5F7 button.navbar-toggler {
    display: block;
  }
  .cid-sDml6gb5F7 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sDml6gb5F7 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sDml6gb5F7 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDml6gb5F7 .navbar-collapse.collapsing,
  .cid-sDml6gb5F7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDml6gb5F7 .navbar-collapse.collapsing .navbar-nav,
  .cid-sDml6gb5F7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDml6gb5F7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDml6gb5F7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDml6gb5F7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDml6gb5F7 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sDml6gb5F7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDml6gb5F7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDml6gb5F7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sDml6gb5F7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDml6gb5F7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDml6gb5F7 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sDml6gb5F7 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sDml6gb5F7 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sDml6gb5F7 .nav-link:hover,
.cid-sDml6gb5F7 .dropdown-item:hover {
  color: #ffa300 !important;
}
.cid-sDml6ac9NI {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDml6ac9NI P {
  color: #767676;
}
.cid-sDml6ac9NI SPAN {
  color: #ffffff;
}
.cid-sDml6ac9NI .mbr-text,
.cid-sDml6ac9NI .mbr-section-btn {
  color: #232323;
}
.cid-sDml6ac9NI H1 {
  color: #232323;
}
.cid-tYDwfYS5Wg {
  background: #fafafa;
}
.cid-tYDwfYS5Wg .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tYDwfYS5Wg figcaption {
  position: relative;
}
.cid-tYDwfYS5Wg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tYDwfYS5Wg .image-block {
    width: 100% !important;
  }
}
.cid-tYDwgVRBOt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-tYDwgVRBOt .mbr-section-subtitle {
  color: #767676;
}
.cid-tYDwgVRBOt H2 {
  color: #ffffff;
}
.cid-sDr03zPGHG {
  padding-top: 75px;
  padding-bottom: 105px;
}
.cid-sDr03zPGHG H1 {
  color: #ffffff;
}
.cid-sDr03zPGHG H3 {
  color: #ffffff;
}
.cid-sDr03zPGHG .mbr-text,
.cid-sDr03zPGHG .mbr-section-btn {
  color: #ffffff;
}
.cid-tYErXJ8AdC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cc2952;
}
.cid-tYErXJ8AdC .mbr-text,
.cid-tYErXJ8AdC blockquote {
  color: #767676;
}
.cid-tYErXJ8AdC .mbr-text P {
  text-align: center;
}
.cid-tYErXJ8AdC .mbr-text {
  color: #ffffff;
}
.cid-sDr04JONs6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sDr04JONs6 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sDr04JONs6 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #084c78;
}
@media (max-width: 991px) {
  .cid-sDr04JONs6 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sDr04JONs6 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sDr04JONs6 .mbr-iconfont {
  font-size: 4rem;
  padding-right: 1.5rem;
  color: #084c78;
}
.cid-sDr04JONs6 .card-title {
  color: #ffffff;
}
.cid-sDr04JONs6 P {
  color: #ffffff;
}
.cid-tYtmxtjuOe {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tYtmxtjuOe img,
.cid-tYtmxtjuOe .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tYtmxtjuOe .item:focus,
.cid-tYtmxtjuOe span:focus {
  outline: none;
}
.cid-tYtmxtjuOe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYtmxtjuOe .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tYtmxtjuOe .item {
  padding: 0;
  margin: 0;
}
.cid-tYtmxtjuOe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa200;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYtmxtjuOe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYtmxtjuOe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYtmxtjuOe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYtmxtjuOe .mbr-section-title {
  color: #232323;
}
.cid-tYtmxtjuOe .mbr-text,
.cid-tYtmxtjuOe .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tYtmxtjuOe .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tYtmxtjuOe .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uu1AP0hyri {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uu1AP0hyri img,
.cid-uu1AP0hyri .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uu1AP0hyri .item:focus,
.cid-uu1AP0hyri span:focus {
  outline: none;
}
.cid-uu1AP0hyri .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uu1AP0hyri .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffa300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uu1AP0hyri .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu1AP0hyri .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uu1AP0hyri .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uu1AP0hyri .mbr-section-title {
  color: #232323;
}
.cid-uu1AP0hyri .mbr-text,
.cid-uu1AP0hyri .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uu1AP0hyri .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uu1AP0hyri .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYDwNzviul .main_wrapper {
  position: relative;
  height: 38rem;
  width: 100%;
  background-color: #c0c0c0;
}
.cid-tYDwNzviul .main_wrapper .b_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cid-tYDwNzviul .main_wrapper .b_wrapper .block {
  height: 300px;
  background-color: #ffffff;
  pointer-events: fill;
}
.cid-tYDwNzviul .main_wrapper .b_wrapper .block .block_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tYDwNzviul .google-map {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-tYDwNzviul .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tYDwNzviul .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tYDwNzviul .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tYDwNzviul .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tYDwNzviul .main_wrapper .b_wrapper {
    display: block;
    height: unset;
  }
  .cid-tYDwNzviul .google-map {
    position: relative;
  }
  .cid-tYDwNzviul .container {
    max-width: 100%;
    padding: 0;
  }
}
.cid-ut7jE6pgiW {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ut7jE6pgiW .mbr-text {
  color: #c1c1c1;
}
.cid-ut7jE6pgiW H3 {
  text-align: center;
  color: #084c78;
}
.cid-ut7jE6pgiW .mbr-text,
.cid-ut7jE6pgiW .mbr-section-btn {
  text-align: center;
  color: #084c78;
}
.cid-sDml6jjtvO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDml6jjtvO P {
  color: #767676;
}
.cid-sDml6jjtvO SPAN {
  color: #ffffff;
}
.cid-sDml6jjtvO .mbr-text,
.cid-sDml6jjtvO .mbr-section-btn {
  color: #ffffff;
}
.cid-ut7jItQpLg {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/soulmusic-assistencia-tecnica-de-amplificadores-e-receivers-vintage-em-sao-paulo-banner-5-1920x1080.jpg");
}
.cid-sDml6jzSt9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
@media (max-width: 991px) {
  .cid-sDml6jzSt9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDml6jzSt9 .row {
  flex-direction: row-reverse;
}
.cid-sDml6jzSt9 img {
  width: 100%;
}
.cid-tYsAtnpE5q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #11426a;
}
.cid-tYsAtnpE5q .mbr-text,
.cid-tYsAtnpE5q blockquote {
  color: #767676;
}
.cid-tYsAtnpE5q .mbr-text P {
  text-align: center;
}
.cid-tYsAtnpE5q .mbr-text {
  color: #ffffff;
  text-align: center;
}
