body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.4rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
/* ---- 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: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f1ce00 !important;
}
.bg-success {
  background-color: #fab901 !important;
}
.bg-info {
  background-color: #2e2d28 !important;
}
.bg-warning {
  background-color: #29ad09 !important;
}
.bg-danger {
  background-color: #848688 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f1ce00 !important;
  border-color: #f1ce00 !important;
  color: #000000 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #000000 !important;
  background-color: #a48d00 !important;
  border-color: #a48d00 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a48d00 !important;
  border-color: #a48d00 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #211915 !important;
  border-color: #211915 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #2e2d28 !important;
  border-color: #2e2d28 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #050504 !important;
  border-color: #050504 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #050504 !important;
  border-color: #050504 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #fab901 !important;
  border-color: #fab901 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #ae8101 !important;
  border-color: #ae8101 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ae8101 !important;
  border-color: #ae8101 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #29ad09 !important;
  border-color: #29ad09 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #186405 !important;
  border-color: #186405 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #186405 !important;
  border-color: #186405 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #848688 !important;
  border-color: #848688 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #5e6061 !important;
  border-color: #5e6061 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5e6061 !important;
  border-color: #5e6061 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  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-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #8b7700;
  color: #8b7700 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #000000 !important;
  background-color: #f1ce00;
  border-color: #f1ce00;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #f1ce00 !important;
  border-color: #f1ce00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #211915;
  border-color: #211915;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #211915 !important;
  border-color: #211915 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #2e2d28;
  border-color: #2e2d28;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #2e2d28 !important;
  border-color: #2e2d28 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #946e01;
  color: #946e01 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #fab901;
  border-color: #fab901;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fab901 !important;
  border-color: #fab901 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #124c04;
  color: #124c04 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #29ad09;
  border-color: #29ad09;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #29ad09 !important;
  border-color: #29ad09 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #525354;
  color: #525354 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #848688;
  border-color: #848688;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #848688 !important;
  border-color: #848688 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f1ce00 !important;
}
.text-secondary {
  color: #211915 !important;
}
.text-success {
  color: #fab901 !important;
}
.text-info {
  color: #2e2d28 !important;
}
.text-warning {
  color: #29ad09 !important;
}
.text-danger {
  color: #848688 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #8b7700 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #946e01 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #124c04 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #525354 !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: #fab901;
}
.alert-info {
  background-color: #2e2d28;
}
.alert-warning {
  background-color: #29ad09;
}
.alert-danger {
  background-color: #848688;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.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;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f1ce00;
  border-color: #f1ce00;
  color: #0b0a00;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f1ce00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff6be;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff1c8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e0dfdb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #64f540;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c5c6c7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
blockquote {
  border-color: #f1ce00;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.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 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f1ce00;
  color: #000000;
}
.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: #f1ce00;
  border-bottom-color: #f1ce00;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f1ce00 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #211915 !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: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f1ce00' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tx136KT8hP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx136KT8hP .navbar.navbar-short .nav-link {
  color: #fff !important;
  border-color: #fff;
}
.cid-tx136KT8hP .nav-link {
  font-size: 14px !important;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  font-weight: 500 !important;
}
.cid-tx136KT8hP .nav-link:hover {
  color: #f1ce00  !important;
}
.cid-tx136KT8hP .nav-dropdown .dropdown-item {
  line-height: 1.5 !important;
}
.cid-tx136KT8hP .btn {
  margin: 0rem 0.5rem;
  padding: 6px 10px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
}
.cid-tx136KT8hP .btn:hover {
  color: #fff !important;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item {
  color: #fff !important;
  font-weight: 500 !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item:hover {
  color: #f1ce00 !important;
  opacity: 1 !important;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx136KT8hP .dropdown-item {
  color: #fff !important;
}
.cid-tx136KT8hP .mb-10 {
  margin-bottom: 10px !important;
}
.cid-tx136KT8hP .dropdown-menu {
  padding: 10px 0;
  background: #ffffff !important;
}
.cid-tx136KT8hP .btn-white {
  color: #f1ce00 !important;
}
.cid-tx136KT8hP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.6em .4em !important;
}
.cid-tx136KT8hP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tx136KT8hP .container {
  display: flex;
  margin: auto;
}
.cid-tx136KT8hP .navbar.navbar-short .nav-link,
.cid-tx136KT8hP .navbar.navbar-short .navbar-caption {
  color: #fff !important;
  border-color: #fff;
}
.cid-tx136KT8hP .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-tx136KT8hP .navbar.opened {
  background: #656565 !important;
}
.cid-tx136KT8hP .nav-item:focus,
.cid-tx136KT8hP .nav-link:focus {
  outline: none;
}
.cid-tx136KT8hP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tx136KT8hP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tx136KT8hP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #656565;
  background: none;
}
.cid-tx136KT8hP .navbar.opened {
  transition: all 0.3s;
}
.cid-tx136KT8hP .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tx136KT8hP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tx136KT8hP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tx136KT8hP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tx136KT8hP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tx136KT8hP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tx136KT8hP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tx136KT8hP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tx136KT8hP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tx136KT8hP .navbar .navbar-logo img {
    height: auto !important;
  }
  .cid-tx136KT8hP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tx136KT8hP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tx136KT8hP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tx136KT8hP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tx136KT8hP .navbar.navbar-short {
  background: #656565 !important;
  min-height: 60px;
}
.cid-tx136KT8hP .navbar.navbar-short .navbar-logo img {
  height: auto !important;
}
.cid-tx136KT8hP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tx136KT8hP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tx136KT8hP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tx136KT8hP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tx136KT8hP .dropdown-item.active,
.cid-tx136KT8hP .dropdown-item:active {
  background-color: transparent;
}
.cid-tx136KT8hP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tx136KT8hP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tx136KT8hP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tx136KT8hP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #656565;
}
.cid-tx136KT8hP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tx136KT8hP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tx136KT8hP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tx136KT8hP .navbar-buttons {
  text-align: center;
}
.cid-tx136KT8hP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx136KT8hP .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tx136KT8hP a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tx136KT8hP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tx136KT8hP .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tx136KT8hP .icons-menu span {
  font-size: 20px;
  color: #e0a544 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tx136KT8hP .navbar {
    height: 77px;
  }
  .cid-tx136KT8hP .navbar.opened {
    height: auto;
  }
  .cid-tx136KT8hP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx139w494t {
  padding-top: 2rem;
  padding-bottom: 0rem;
  margin-top: -70px;
  background-color: #eeeeee;
}
.cid-tx139w494t .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tx139w494t .carousel-item,
.cid-tx139w494t .carousel-inner {
  height: 100%;
}
.cid-tx139w494t .mbr-section-title {
  font-weight: 300 !important;
  text-align: center;
}
.cid-tx139w494t .btn-pd {
  padding: 12px 17px !important;
}
.cid-tx139w494t .carousel-caption {
  top: 60%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: center;
}
.cid-tx139w494t .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tx139w494t .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tx139w494t .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-tx139w494t .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tx139w494t .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tx139w494t .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tx139w494t .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tx139w494t .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-tx139w494t .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx139w494t .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tx139w494t .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tx139w494t .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tx139w494t .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-tx139w494t .carousel-indicators li.active {
  background-color: #fab901;
}
.cid-tx139w494t .carousel-indicators li.active,
.cid-tx139w494t .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tx139w494t .carousel-indicators li::after,
.cid-tx139w494t .carousel-indicators li::before {
  content: none;
}
.cid-tx139w494t .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tx139w494t .carousel-indicators {
    display: none !important;
  }
}
.cid-tx139w494t .btn {
  color: #fff !important;
}
.cid-tx139w494t .btn.btn-primary-outline {
  border: 1px solid #f1ce00;
}
.cid-tx139w494t .btn.btn-primary-outline:hover {
  background-color: #f1ce00 !important;
  color: #ffffff !important;
}
.cid-tx139w494t .btn.btn-secondary-outline {
  border: 1px solid #211915;
}
.cid-tx139w494t .btn.btn-secondary-outline:hover {
  background-color: #211915 !important;
  color: #ffffff !important;
}
.cid-tx139w494t .btn.btn-success-outline {
  border: 1px solid #fab901;
}
.cid-tx139w494t .btn.btn-success-outline:hover {
  background-color: #fab901 !important;
  color: #ffffff !important;
}
.cid-tx139w494t .btn.btn-info-outline {
  border: 1px solid #2e2d28;
}
.cid-tx139w494t .btn.btn-info-outline:hover {
  background-color: #2e2d28 !important;
  color: #ffffff !important;
}
.cid-tx139w494t .btn.btn-warning-outline {
  border: 1px solid #29ad09;
}
.cid-tx139w494t .btn.btn-warning-outline:hover {
  background-color: #29ad09 !important;
  color: #ffffff !important;
}
.cid-tx139w494t .btn.btn-danger-outline {
  border: 1px solid #848688;
}
.cid-tx139w494t .btn.btn-danger-outline:hover {
  background-color: #848688 !important;
  color: #ffffff !important;
}
.cid-tx139w494t .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-tx139w494t .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-tx139w494t .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-tx139w494t .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-tx139w494t .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-tx139w494t .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-tx139w494t .carousel-control {
    display: none;
  }
  .cid-tx139w494t .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .cid-tx139w494t .buttons-wrap .mbr-section-btn {
    text-align: center;
    margin-bottom: 10px;
  }
}
.cid-tx139w494t .mbr-text,
.cid-tx139w494t .mbr-section-btn {
  text-align: center;
}
.cid-txRwlwRMRI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-txRwlwRMRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-txRwlwRMRI .btn {
  font-size: 13px !important;
  padding: 6px 9px !important;
}
.cid-txRwlwRMRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txRwlwRMRI .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-txRwlwRMRI .mbr-section-title {
  color: #ffffff;
}
.cid-txRwlwRMRI .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-txRwlwRMRI .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-txRwlwRMRI .card-row {
  align-items: stretch;
}
.cid-txRwlwRMRI .card {
  margin-top: 30px;
}
.cid-txRwlwRMRI .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 35px 35px 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
@media (max-width: 1199px) {
  .cid-txRwlwRMRI .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-txRwlwRMRI .card-wrapper {
    padding: 20px;
  }
}
.cid-txRwlwRMRI .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-txRwlwRMRI .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-txRwlwRMRI .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-txRwlwRMRI .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-txRwlwRMRI .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-txRwlwRMRI .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-txRwlwRMRI .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 15px;
}
.cid-txRwlwRMRI .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #f1ce00;
}
.cid-txRwlwRMRI .card-title {
  color: #ffffff;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
.cid-txRwlwRMRI .card-text {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 22px;
  transition: .5s all;
  text-align: center;
}
.cid-tx1bTURyQv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f1ce00;
}
.cid-tx1bTURyQv .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tx1bTURyQv .mbr-section-btn,
  .cid-tx1bTURyQv .mbr-section-subtitle,
  .cid-tx1bTURyQv .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tx1bTURyQv .mbr-section-title {
  color: #000000;
}
.cid-tx1rIe1woE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #101010;
}
.cid-tx1rIe1woE .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tx1rIe1woE .content_block:hover .mbr-section-title a {
  color: #211915 !important;
}
.cid-tx1rIe1woE .btn-white-outline {
  border: 1px solid #fff !important;
  padding: 10px 12px !important;
  letter-spacing: 1px;
}
.cid-tx1rIe1woE .btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #fff !important;
}
.cid-tx1rIe1woE .card_topic,
.cid-tx1rIe1woE .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tx1rIe1woE .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #211915;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tx1rIe1woE .mbr-text {
  line-height: 1.7 !important;
  font-size: 16px !important;
}
.cid-tx1rIe1woE .image {
  position: relative;
}
.cid-tx1rIe1woE .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #101010);
  z-index: 1;
  pointer-events: none;
}
.cid-tx1rIe1woE .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tx1rIe1woE .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tx1rIe1woE .mbr-section-btn .btn-secondary-outline:hover,
.cid-tx1rIe1woE .mbr-section-btn .btn-secondary-outline .active,
.cid-tx1rIe1woE .mbr-section-btn .btn-secondary-outline:focus {
  color: #f1ce00 !important;
}
.cid-tx1rIe1woE .btn-primary-outline {
  padding: 0;
}
.cid-tx1rIe1woE .btn-primary-outline:hover {
  color: #fff !important;
}
.cid-tx1rIe1woE .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tx1rIe1woE .content_block {
    padding: 30px 15px;
  }
  .cid-tx1rIe1woE .mbr-figure {
    padding: 0;
  }
  .cid-tx1rIe1woE .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(16, 16, 16, 0.99));
  }
}
.cid-tx1rIe1woE .mbr-text,
.cid-tx1rIe1woE .mbr-section-btn {
  color: #ffffff;
}
.cid-tx1rIe1woE .mbr-section-title {
  color: #ffffff;
}
.cid-tx1huVweqt {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/escola-de-musicas-retiro-bg-1920x1200.jpg");
}
.cid-tx1huVweqt .row {
  align-items: center;
}
.cid-tx1huVweqt .mbr-section-subtitle {
  color: #ffffff;
  padding-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.cid-tx1huVweqt .mbr-section-title {
  padding-bottom: 5px;
  color: #ffffff;
}
.cid-tx1huVweqt .first {
  padding-bottom: 10px;
}
.cid-tx1huVweqt .left-side {
  padding-left: 150px;
  z-index: 3;
}
.cid-tx1huVweqt .right-side {
  padding-right: 100px;
  margin-left: 50%;
  position: absolute;
}
.cid-tx1huVweqt .mbr-text {
  color: #ffffff;
}
.cid-tx1huVweqt img {
  max-width: 450px;
  margin-left: 50px;
}
@media (max-width: 750px) {
  .cid-tx1huVweqt .left-side {
    padding-left: 15px;
    position: initial;
    width: 100%;
    z-index: 3;
    margin-bottom: 30px;
  }
  .cid-tx1huVweqt .right-side {
    padding-right: 15px;
    margin-left: 0%;
    position: initial;
  }
}
.cid-tx13iYj8Ay {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tx13iYj8Ay .card-wrapper {
  width: 80%;
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 0;
  padding: 1rem;
  background: #f1ce00;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -100px;
}
.cid-tx13iYj8Ay .bottom,
.cid-tx13iYj8Ay .card-title {
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 1150px) {
  .cid-tx13iYj8Ay .card-wrapper {
    top: -20px;
  }
}
@media (max-width: 990px) {
  .cid-tx13iYj8Ay {
    padding-bottom: 0;
  }
  .cid-tx13iYj8Ay .card-wrapper {
    position: initial;
  }
  .cid-tx13iYj8Ay .card-box {
    padding: 10%;
  }
}
.cid-tx13iYj8Ay .card-title {
  color: #0e0f11;
}
.cid-tx13iYj8Ay .bottom {
  color: #000000;
}
.cid-txj7cqYkgc {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-txj7cqYkgc .mbr-section-subtitle {
  color: #000000;
}
.cid-tx1bW60yf2 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/fundo-com-nota-musical-1-1920x1009.jpg");
}
.cid-tx1bW60yf2 .mbr-section-subtitle {
  color: #000000;
}
.cid-tx1rXmkUaP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
}
.cid-tx1rXmkUaP .container,
.cid-tx1rXmkUaP .container-fluid {
  position: static;
}
.cid-tx1rXmkUaP .label-text {
  width: 100%;
  color: #999999;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tx1rXmkUaP .label-text span {
  padding: 8px 18px;
  background-color: #f0e4ff;
  border-radius: 15px;
  color: inherit;
}
.cid-tx1rXmkUaP .mbr-section-title {
  color: #060203;
  margin-bottom: 15px;
  text-align: center;
}
.cid-tx1rXmkUaP .colored-text {
  color: #c1c1c1;
  line-height: inherit;
  text-decoration: none;
}
.cid-tx1rXmkUaP .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 40px;
}
@media (min-width: 1400px) {
  .cid-tx1rXmkUaP .mbr-text {
    padding-right: 48px;
  }
}
.cid-tx1rXmkUaP .cards-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tx1rXmkUaP .card {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-top: 30px;
  padding: 25px 25px 25px 95px;
  background: #ffffff;
  box-shadow: -20px 20px 50px rgba(0, 40, 99, 0.05);
  border-radius: 5px;
}
.cid-tx1rXmkUaP .card:hover .card-number {
  background: #f1ce00;
  border-color: #f1ce00;
  color: #ffffff;
}
.cid-tx1rXmkUaP .card-number {
  width: 45px;
  height: 45px;
  border: 1px solid #CECECE;
  border-radius: 50%;
  line-height: 43px;
  text-align: center;
  font-size: 18px;
  color: #1b1b1b;
  position: absolute;
  top: 27px;
  left: 25px;
  transition: all 0.3s ease-in-out;
}
.cid-tx1rXmkUaP .card-title {
  color: #060203;
  margin-bottom: 8px;
}
.cid-tx1rXmkUaP .card-text {
  color: #000000;
  opacity: 0.8;
}
.cid-tx1rXmkUaP .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tx1rXmkUaP .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tx1rXmkUaP .mbr-section-btn .btn:before {
  display: none;
}
.cid-tx1rXmkUaP .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tx1rXmkUaP .bg-round {
  position: absolute;
  top: -14%;
  padding: 0;
}
.cid-tx1rXmkUaP .bg-round svg {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tx1rXmkUaP .bg-round {
    width: 56%;
    left: 0;
    transform: scale(-1, 1);
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .cid-tx1rXmkUaP .bg-round {
    width: 56%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tx1rXmkUaP .bg-round {
    width: 68%;
  }
}
@media (max-width: 767px) {
  .cid-tx1rXmkUaP .bg-round {
    top: auto;
    bottom: -10%;
  }
  .cid-tx1rXmkUaP .bg-round svg {
    height: 100%;
  }
}
.cid-tx1rXmkUaP .col-text {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .cid-tx1rXmkUaP .col-text {
    margin-left: auto;
  }
}
.cid-tx1fCmxTqt {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tx1fCmxTqt .jq-selectbox__select-text {
  display: block;
  width: 100%;
  font-size: 16px;
}
@media (min-width: 992px) {
  .cid-tx1fCmxTqt .wrapper {
    padding: 0 28px;
  }
}
@media (min-width: 992px) {
  .cid-tx1fCmxTqt .form {
    padding: 0 85px 0 48px;
  }
}
.cid-tx1fCmxTqt .mbr-text span {
  font-size: 28px;
  color: #1960a6;
}
.cid-tx1fCmxTqt .btn {
  border-radius: 35px;
}
.cid-tx1fCmxTqt textarea {
  height: 100px;
}
.cid-tx1fCmxTqt form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tx1fCmxTqt form .mbr-section-btn .btn {
  border-radius: 35px;
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tx1fCmxTqt form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tx1fCmxTqt .form-control,
.cid-tx1fCmxTqt .field-input,
.cid-tx1fCmxTqt select {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid rgba(61, 61, 61, 0.3) !important;
  padding: 8px 0;
  color: #282828;
  margin: 0;
  font-weight: 300;
}
.cid-tx1fCmxTqt .form-control:hover {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid rgba(61, 61, 61, 0.3) !important;
}
.cid-tx1fCmxTqt .form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: inherit;
  border-bottom: 1px solid #282828 !important;
}
.cid-tx1fCmxTqt .form-check-input:checked {
  background-color: #f1ce00;
  border-bottom: 1px solid #282828 !important;
}
.cid-tx1fCmxTqt .form-control::placeholder {
  color: #282828;
  font-size: 16px;
  margin: 0;
  font-weight: 300;
}
.cid-tx1fCmxTqt select {
  color: #282828;
  font-size: 14px !important;
  margin: 0;
  font-weight: 300;
}
.cid-tx1fCmxTqt .form-group {
  margin-bottom: 35px;
}
.cid-tx1fCmxTqt .form-control,
.cid-tx1fCmxTqt form .btn {
  min-height: auto;
}
.cid-tx1fCmxTqt .link-title:after {
  content: "\2192";
  font-size: 16px;
  margin-left: 10px;
  font-weight: 700;
  padding: .7rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-tx1fCmxTqt .link-title:hover:after {
  background: #FFFF27;
}
.cid-tx1fCmxTqt .mbr-section-subtitle {
  text-align: left;
}
.cid-tx1fCmxTqt .mbr-section-title {
  text-align: left;
}
.cid-tx1n38QFne {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tx1n38QFne .google-map {
  height: 19rem;
  position: relative;
}
.cid-tx1n38QFne .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tx1n38QFne .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-tx1n38QFne .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tx1n38QFne .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-twE7WEWEUh {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0e0f11;
}
.cid-twE7WEWEUh a {
  transition: 0.3s;
}
.cid-twE7WEWEUh p {
  margin-bottom: 0.5rem;
}
.cid-twE7WEWEUh h5 {
  margin-bottom: 1rem;
}
.cid-twE7WEWEUh .card-img2 span {
  padding-top: 6px;
}
.cid-twE7WEWEUh .soc-item a {
  padding-top: 5px;
}
.cid-twE7WEWEUh .mbr-iconfont {
  color: #f1ce00 !important;
  transition: 0.3s;
}
.cid-twE7WEWEUh .link:hover {
  color: #fff !important;
}
.cid-twE7WEWEUh .item-title {
  line-height: 1.8;
  color: #ffffff;
  font-size: 13px;
}
@media (max-width: 992px) {
  .cid-twE7WEWEUh .content > div:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.cid-twE7WEWEUh .soc-item {
  width: 30px;
  height: 20px;
  background: transparent;
  border-radius: 100%;
  display: inline-block;
  margin-right: 0.5rem;
}
.cid-twE7WEWEUh .soc-item span {
  font-size: 1.3rem;
}
.cid-twE7WEWEUh .soc-item:hover span {
  color: #000 !important;
}
.cid-twE7WEWEUh .foot-menu-item {
  color: #ffffff;
}
.cid-twE7WEWEUh .foot-menu-item:hover {
  color: #000 !important;
}
.cid-twE7WEWEUh .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.cid-twE7WEWEUh .item h6 {
  margin: 0;
}
.cid-twE7WEWEUh .media-wrap {
  margin-bottom: 1rem;
}
.cid-twE7WEWEUh .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #000;
}
.cid-twE7WEWEUh img {
  width: 80%;
}
.cid-twE7WEWEUh .btn {
  width: 100%;
  margin-left: 0rem;
}
.cid-twE7WEWEUh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: inline-block;
}
@media (max-width: 576px) {
  .cid-twE7WEWEUh .social-list {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-twE7WEWEUh .container {
  padding: 0;
}
.cid-twE7WEWEUh .btn-primary {
  color: #333333 !important;
}
.cid-twE7WEWEUh .btn-primary:hover {
  background-color: #bea200 !important;
}
.cid-twE7WEWEUh .title {
  color: #f1ce00;
  font-weight: 400;
}
.cid-twE7WEWEUh .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-twmcqDxk3l {
  padding-top: 150px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/banner-aulas-de-musica-1920x700.jpg");
}
.cid-twmcqDxk3l .mbr-overlay {
  background: #0e0f11;
}
.cid-twmcqDxk3l .mbr-section-title {
  letter-spacing: -1px;
  text-align: center;
}
.cid-twmcqDxk3l H4 {
  text-align: center;
}
.cid-twmcqDxk3l .mbr-text,
.cid-twmcqDxk3l .mbr-section-btn {
  text-align: center;
}
.cid-tx1vetqYFj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tx1vetqYFj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx1vetqYFj .btn {
  font-size: 13px !important;
  padding: 6px 9px !important;
}
.cid-tx1vetqYFj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx1vetqYFj .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tx1vetqYFj .mbr-section-title {
  color: #ffffff;
}
.cid-tx1vetqYFj .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tx1vetqYFj .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tx1vetqYFj .card-row {
  align-items: stretch;
}
.cid-tx1vetqYFj .card {
  margin-top: 30px;
}
.cid-tx1vetqYFj .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-tx1vetqYFj .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tx1vetqYFj .card-wrapper {
    padding: 20px;
  }
}
.cid-tx1vetqYFj .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tx1vetqYFj .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tx1vetqYFj .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tx1vetqYFj .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tx1vetqYFj .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tx1vetqYFj .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tx1vetqYFj .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 15px;
}
.cid-tx1vetqYFj .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #f1ce00;
}
.cid-tx1vetqYFj .card-title {
  color: #ffffff;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
.cid-tx1vetqYFj .card-text {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 22px;
  transition: .5s all;
  text-align: center;
}
.cid-txj8yItwgH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f1ce00;
}
.cid-txj8yItwgH .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-txj8yItwgH .mbr-section-btn,
  .cid-txj8yItwgH .mbr-section-subtitle,
  .cid-txj8yItwgH .mbr-section-title {
    text-align: center !important;
  }
}
.cid-txj8yItwgH .mbr-section-title {
  color: #000000;
}
.cid-txjciaWDeg {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0e0f11;
}
.cid-txjciaWDeg a {
  transition: 0.3s;
}
.cid-txjciaWDeg p {
  margin-bottom: 0.5rem;
}
.cid-txjciaWDeg h5 {
  margin-bottom: 1rem;
}
.cid-txjciaWDeg .card-img2 span {
  padding-top: 6px;
}
.cid-txjciaWDeg .soc-item a {
  padding-top: 5px;
}
.cid-txjciaWDeg .mbr-iconfont {
  color: #f1ce00 !important;
  transition: 0.3s;
}
.cid-txjciaWDeg .link:hover {
  color: #fff !important;
}
.cid-txjciaWDeg .item-title {
  line-height: 1.8;
  color: #ffffff;
  font-size: 13px;
}
@media (max-width: 992px) {
  .cid-txjciaWDeg .content > div:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.cid-txjciaWDeg .soc-item {
  width: 30px;
  height: 20px;
  background: transparent;
  border-radius: 100%;
  display: inline-block;
  margin-right: 0.5rem;
}
.cid-txjciaWDeg .soc-item span {
  font-size: 1.3rem;
}
.cid-txjciaWDeg .soc-item:hover span {
  color: #000 !important;
}
.cid-txjciaWDeg .foot-menu-item {
  color: #ffffff;
}
.cid-txjciaWDeg .foot-menu-item:hover {
  color: #000 !important;
}
.cid-txjciaWDeg .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.cid-txjciaWDeg .item h6 {
  margin: 0;
}
.cid-txjciaWDeg .media-wrap {
  margin-bottom: 1rem;
}
.cid-txjciaWDeg .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #000;
}
.cid-txjciaWDeg img {
  width: 80%;
}
.cid-txjciaWDeg .btn {
  width: 100%;
  margin-left: 0rem;
}
.cid-txjciaWDeg .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: inline-block;
}
@media (max-width: 576px) {
  .cid-txjciaWDeg .social-list {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-txjciaWDeg .container {
  padding: 0;
}
.cid-txjciaWDeg .btn-primary {
  color: #333333 !important;
}
.cid-txjciaWDeg .btn-primary:hover {
  background-color: #bea200 !important;
}
.cid-txjciaWDeg .title {
  color: #f1ce00;
  font-weight: 400;
}
.cid-txjciaWDeg .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-tx136KT8hP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx136KT8hP .navbar.navbar-short .nav-link {
  color: #fff !important;
  border-color: #fff;
}
.cid-tx136KT8hP .nav-link {
  font-size: 14px !important;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  font-weight: 500 !important;
}
.cid-tx136KT8hP .nav-link:hover {
  color: #f1ce00  !important;
}
.cid-tx136KT8hP .nav-dropdown .dropdown-item {
  line-height: 1.5 !important;
}
.cid-tx136KT8hP .btn {
  margin: 0rem 0.5rem;
  padding: 6px 10px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
}
.cid-tx136KT8hP .btn:hover {
  color: #fff !important;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item {
  color: #fff !important;
  font-weight: 500 !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item:hover {
  color: #f1ce00 !important;
  opacity: 1 !important;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tx136KT8hP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx136KT8hP .dropdown-item {
  color: #fff !important;
}
.cid-tx136KT8hP .mb-10 {
  margin-bottom: 10px !important;
}
.cid-tx136KT8hP .dropdown-menu {
  padding: 10px 0;
  background: #ffffff !important;
}
.cid-tx136KT8hP .btn-white {
  color: #f1ce00 !important;
}
.cid-tx136KT8hP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.6em .4em !important;
}
.cid-tx136KT8hP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tx136KT8hP .container {
  display: flex;
  margin: auto;
}
.cid-tx136KT8hP .navbar.navbar-short .nav-link,
.cid-tx136KT8hP .navbar.navbar-short .navbar-caption {
  color: #fff !important;
  border-color: #fff;
}
.cid-tx136KT8hP .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-tx136KT8hP .navbar.opened {
  background: #656565 !important;
}
.cid-tx136KT8hP .nav-item:focus,
.cid-tx136KT8hP .nav-link:focus {
  outline: none;
}
.cid-tx136KT8hP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tx136KT8hP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tx136KT8hP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #656565;
  background: none;
}
.cid-tx136KT8hP .navbar.opened {
  transition: all 0.3s;
}
.cid-tx136KT8hP .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tx136KT8hP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tx136KT8hP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tx136KT8hP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tx136KT8hP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tx136KT8hP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tx136KT8hP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tx136KT8hP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tx136KT8hP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tx136KT8hP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tx136KT8hP .navbar .navbar-logo img {
    height: auto !important;
  }
  .cid-tx136KT8hP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tx136KT8hP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tx136KT8hP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tx136KT8hP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tx136KT8hP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tx136KT8hP .navbar.navbar-short {
  background: #656565 !important;
  min-height: 60px;
}
.cid-tx136KT8hP .navbar.navbar-short .navbar-logo img {
  height: auto !important;
}
.cid-tx136KT8hP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tx136KT8hP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tx136KT8hP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tx136KT8hP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tx136KT8hP .dropdown-item.active,
.cid-tx136KT8hP .dropdown-item:active {
  background-color: transparent;
}
.cid-tx136KT8hP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tx136KT8hP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tx136KT8hP .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tx136KT8hP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #656565;
}
.cid-tx136KT8hP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tx136KT8hP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tx136KT8hP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tx136KT8hP .navbar-buttons {
  text-align: center;
}
.cid-tx136KT8hP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx136KT8hP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tx136KT8hP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx136KT8hP .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tx136KT8hP a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tx136KT8hP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tx136KT8hP .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tx136KT8hP .icons-menu span {
  font-size: 20px;
  color: #e0a544 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tx136KT8hP .navbar {
    height: 77px;
  }
  .cid-tx136KT8hP .navbar.opened {
    height: auto;
  }
  .cid-tx136KT8hP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx1AbCVQX0 {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #212428;
}
.cid-tx1AbCVQX0 .mbr-overlay {
  background: #0e0f11;
}
.cid-tx1AbCVQX0 .mbr-section-title {
  letter-spacing: -1px;
  text-align: center;
}
.cid-tx1AbCVQX0 H4 {
  text-align: center;
}
.cid-tx1AbCVQX0 .mbr-text,
.cid-tx1AbCVQX0 .mbr-section-btn {
  text-align: center;
}
.cid-ty420GumtV {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/quem-somos-bg.jpg");
}
.cid-ty420GumtV .mbr-overlay {
  background: #f58634;
}
.cid-ty420GumtV .mbr-section-title {
  letter-spacing: -1px;
}
.cid-txj8M6geWB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f1ce00;
}
.cid-txj8M6geWB .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-txj8M6geWB .mbr-section-btn,
  .cid-txj8M6geWB .mbr-section-subtitle,
  .cid-txj8M6geWB .mbr-section-title {
    text-align: center !important;
  }
}
.cid-txj8M6geWB .mbr-section-title {
  color: #000000;
}
.cid-tx1ArouBOQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tx1ArouBOQ .mbr-section-subtitle {
  color: #000000;
}
.cid-txjckUKbkd {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0e0f11;
}
.cid-txjckUKbkd a {
  transition: 0.3s;
}
.cid-txjckUKbkd p {
  margin-bottom: 0.5rem;
}
.cid-txjckUKbkd h5 {
  margin-bottom: 1rem;
}
.cid-txjckUKbkd .card-img2 span {
  padding-top: 6px;
}
.cid-txjckUKbkd .soc-item a {
  padding-top: 5px;
}
.cid-txjckUKbkd .mbr-iconfont {
  color: #f1ce00 !important;
  transition: 0.3s;
}
.cid-txjckUKbkd .link:hover {
  color: #fff !important;
}
.cid-txjckUKbkd .item-title {
  line-height: 1.8;
  color: #ffffff;
  font-size: 13px;
}
@media (max-width: 992px) {
  .cid-txjckUKbkd .content > div:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.cid-txjckUKbkd .soc-item {
  width: 30px;
  height: 20px;
  background: transparent;
  border-radius: 100%;
  display: inline-block;
  margin-right: 0.5rem;
}
.cid-txjckUKbkd .soc-item span {
  font-size: 1.3rem;
}
.cid-txjckUKbkd .soc-item:hover span {
  color: #000 !important;
}
.cid-txjckUKbkd .foot-menu-item {
  color: #ffffff;
}
.cid-txjckUKbkd .foot-menu-item:hover {
  color: #000 !important;
}
.cid-txjckUKbkd .item {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.cid-txjckUKbkd .item h6 {
  margin: 0;
}
.cid-txjckUKbkd .media-wrap {
  margin-bottom: 1rem;
}
.cid-txjckUKbkd .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #000;
}
.cid-txjckUKbkd img {
  width: 80%;
}
.cid-txjckUKbkd .btn {
  width: 100%;
  margin-left: 0rem;
}
.cid-txjckUKbkd .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: inline-block;
}
@media (max-width: 576px) {
  .cid-txjckUKbkd .social-list {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-txjckUKbkd .container {
  padding: 0;
}
.cid-txjckUKbkd .btn-primary {
  color: #333333 !important;
}
.cid-txjckUKbkd .btn-primary:hover {
  background-color: #bea200 !important;
}
.cid-txjckUKbkd .title {
  color: #f1ce00;
  font-weight: 400;
}
.cid-txjckUKbkd .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-tx1AbDV1jz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx1AbDV1jz .navbar.navbar-short .nav-link {
  color: #fff !important;
  border-color: #fff;
}
.cid-tx1AbDV1jz .nav-link {
  font-size: 14px !important;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  font-weight: 500 !important;
}
.cid-tx1AbDV1jz .nav-link:hover {
  color: #f1ce00  !important;
}
.cid-tx1AbDV1jz .nav-dropdown .dropdown-item {
  line-height: 1.5 !important;
}
.cid-tx1AbDV1jz .btn {
  margin: 0rem 0.5rem;
  padding: 6px 10px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
}
.cid-tx1AbDV1jz .btn:hover {
  color: #fff !important;
}
.cid-tx1AbDV1jz .dropdown .dropdown-menu .dropdown-item {
  color: #fff !important;
  font-weight: 500 !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx1AbDV1jz .dropdown .dropdown-menu .dropdown-item:hover {
  color: #f1ce00 !important;
  opacity: 1 !important;
}
.cid-tx1AbDV1jz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tx1AbDV1jz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tx1AbDV1jz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tx1AbDV1jz .dropdown-item {
  color: #fff !important;
}
.cid-tx1AbDV1jz .mb-10 {
  margin-bottom: 10px !important;
}
.cid-tx1AbDV1jz .dropdown-menu {
  padding: 10px 0;
  background: #ffffff !important;
}
.cid-tx1AbDV1jz .btn-white {
  color: #f1ce00 !important;
}
.cid-tx1AbDV1jz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.6em .4em !important;
}
.cid-tx1AbDV1jz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tx1AbDV1jz .container {
  display: flex;
  margin: auto;
}
.cid-tx1AbDV1jz .navbar.navbar-short .nav-link,
.cid-tx1AbDV1jz .navbar.navbar-short .navbar-caption {
  color: #fff !important;
  border-color: #fff;
}
.cid-tx1AbDV1jz .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-tx1AbDV1jz .navbar.opened {
  background: #656565 !important;
}
.cid-tx1AbDV1jz .nav-item:focus,
.cid-tx1AbDV1jz .nav-link:focus {
  outline: none;
}
.cid-tx1AbDV1jz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tx1AbDV1jz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tx1AbDV1jz .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #656565;
  background: none;
}
.cid-tx1AbDV1jz .navbar.opened {
  transition: all 0.3s;
}
.cid-tx1AbDV1jz .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tx1AbDV1jz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tx1AbDV1jz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tx1AbDV1jz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tx1AbDV1jz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tx1AbDV1jz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tx1AbDV1jz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tx1AbDV1jz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tx1AbDV1jz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tx1AbDV1jz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tx1AbDV1jz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tx1AbDV1jz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tx1AbDV1jz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tx1AbDV1jz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tx1AbDV1jz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tx1AbDV1jz .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tx1AbDV1jz .navbar .navbar-logo img {
    height: auto !important;
  }
  .cid-tx1AbDV1jz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tx1AbDV1jz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tx1AbDV1jz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tx1AbDV1jz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tx1AbDV1jz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tx1AbDV1jz .navbar.navbar-short {
  background: #656565 !important;
  min-height: 60px;
}
.cid-tx1AbDV1jz .navbar.navbar-short .navbar-logo img {
  height: auto !important;
}
.cid-tx1AbDV1jz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tx1AbDV1jz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tx1AbDV1jz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tx1AbDV1jz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tx1AbDV1jz .dropdown-item.active,
.cid-tx1AbDV1jz .dropdown-item:active {
  background-color: transparent;
}
.cid-tx1AbDV1jz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tx1AbDV1jz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tx1AbDV1jz .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tx1AbDV1jz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #656565;
}
.cid-tx1AbDV1jz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tx1AbDV1jz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tx1AbDV1jz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tx1AbDV1jz .navbar-buttons {
  text-align: center;
}
.cid-tx1AbDV1jz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tx1AbDV1jz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tx1AbDV1jz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tx1AbDV1jz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx1AbDV1jz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx1AbDV1jz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tx1AbDV1jz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx1AbDV1jz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tx1AbDV1jz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tx1AbDV1jz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx1AbDV1jz .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tx1AbDV1jz a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tx1AbDV1jz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tx1AbDV1jz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tx1AbDV1jz .icons-menu span {
  font-size: 20px;
  color: #e0a544 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tx1AbDV1jz .navbar {
    height: 77px;
  }
  .cid-tx1AbDV1jz .navbar.opened {
    height: auto;
  }
  .cid-tx1AbDV1jz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

@media (max-width: 767px) {
	.cid-tx139w494t .item-wrapper {
		height: 500px;
	}
	
	.cid-txRwlwRMRI .card-title {
		margin-bottom: 0px;
	}
	
	.cid-tx1huVweqt img {
		max-width: 100%;
		margin-left: 0;
	}
	
	.dragArea {
		margin-top: 70px;
	}
	
	.cid-twE7WEWEUh .item {
		display: block;
		align-items: center;
		margin-bottom: 0.1rem;
	}
	
	.cid-twE7WEWEUh .foot-menu-item {
		color: #ffffff;
		text-align: center;
	}
}
