body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  position: relative;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: normal;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 100%;
  height: 100%;
  transition: border-radius 0.3s;
  position: absolute;
  left: 0%;
  top: 0%;
  opacity: 1;
  -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;
}
.note-popover .btn:after {
  display: none;
}
@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 {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #146dff !important;
}
.bg-info {
  background-color: #00d17b !important;
}
.bg-warning {
  background-color: #ffe926 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #e11428 !important;
  border-color: #e11428 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #9b0e1c !important;
  border-color: #9b0e1c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9b0e1c !important;
  border-color: #9b0e1c !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #00d17b !important;
  border-color: #00d17b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #00844e !important;
  border-color: #00844e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #00844e !important;
  border-color: #00844e !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #146dff !important;
  border-color: #146dff !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #004bc6 !important;
  border-color: #004bc6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #004bc6 !important;
  border-color: #004bc6 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ffe926 !important;
  border-color: #ffe926 !important;
  color: #262200 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #262200 !important;
  background-color: #d8c300 !important;
  border-color: #d8c300 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #262200 !important;
  background-color: #d8c300 !important;
  border-color: #d8c300 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #830c17;
  color: #830c17 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #e11428;
  border-color: #e11428;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e11428 !important;
  border-color: #e11428 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #006b3f;
  color: #006b3f !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #00d17b;
  border-color: #00d17b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #00d17b !important;
  border-color: #00d17b !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0042ad;
  color: #0042ad !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #146dff;
  border-color: #146dff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #146dff !important;
  border-color: #146dff !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #bfac00;
  color: #bfac00 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #262200 !important;
  background-color: #ffe926;
  border-color: #ffe926;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #262200 !important;
  background-color: #ffe926 !important;
  border-color: #ffe926 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #66458e !important;
}
.text-secondary {
  color: #e11428 !important;
}
.text-success {
  color: #146dff !important;
}
.text-info {
  color: #00d17b !important;
}
.text-warning {
  color: #ffe926 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #830c17 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0042ad !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #006b3f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #bfac00 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !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: #146dff;
}
.alert-info {
  background-color: #00d17b;
}
.alert-warning {
  background-color: #ffe926;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,.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: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e0ecff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9effd7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffef2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #66458e;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* 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 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;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #66458e;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #66458e;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
/* Footer */
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: contrast(currentColor, #000000, #ffffff, 30%);
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #66458e;
}
.cid-r61s7rptSG .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;
  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-r61s7rptSG .nav-item,
.cid-r61s7rptSG .nav-link,
.cid-r61s7rptSG .navbar-caption {
  font-weight: normal;
}
.cid-r61s7rptSG .nav-item:focus,
.cid-r61s7rptSG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-r61s7rptSG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-r61s7rptSG .dropdown .dropdown-menu .dropdown-item {
  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-r61s7rptSG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-r61s7rptSG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-r61s7rptSG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-r61s7rptSG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-r61s7rptSG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-r61s7rptSG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-r61s7rptSG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-r61s7rptSG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffe926;
}
.cid-r61s7rptSG .navbar.opened {
  transition: all .3s;
  background: #ffe926 !important;
}
.cid-r61s7rptSG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-r61s7rptSG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-r61s7rptSG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-r61s7rptSG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r61s7rptSG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r61s7rptSG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r61s7rptSG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r61s7rptSG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-r61s7rptSG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r61s7rptSG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-r61s7rptSG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r61s7rptSG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-r61s7rptSG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r61s7rptSG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r61s7rptSG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r61s7rptSG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r61s7rptSG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-r61s7rptSG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r61s7rptSG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r61s7rptSG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-r61s7rptSG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-r61s7rptSG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-r61s7rptSG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r61s7rptSG .navbar.navbar-short {
  background: #ffe926 !important;
  min-height: 60px;
}
.cid-r61s7rptSG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r61s7rptSG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r61s7rptSG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-r61s7rptSG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r61s7rptSG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r61s7rptSG .dropdown-item.active,
.cid-r61s7rptSG .dropdown-item:active {
  background-color: transparent;
}
.cid-r61s7rptSG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r61s7rptSG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r61s7rptSG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r61s7rptSG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe926;
}
.cid-r61s7rptSG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-r61s7rptSG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r61s7rptSG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-r61s7rptSG .navbar-buttons {
  text-align: center;
}
.cid-r61s7rptSG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-r61s7rptSG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-r61s7rptSG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r61s7rptSG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r61s7rptSG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r61s7rptSG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r61s7rptSG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r61s7rptSG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r61s7rptSG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r61s7rptSG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r61s7rptSG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r61s7rptSG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-r61s7rptSG .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-r61s7rptSG .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r61s7rptSG .soc-item {
  margin: .5rem .3rem;
}
.cid-r61s7rptSG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-r61s7rptSG .navbar {
    height: 77px;
  }
  .cid-r61s7rptSG .navbar.opened {
    height: auto;
  }
  .cid-r61s7rptSG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8sCls1U3Y {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/top-revenda-autorizada-honda-pront-loc-2000x1110.png");
}
.cid-t8sCls1U3Y .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t8sCls1U3Y .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-t8sCls1U3Y .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-t8sCls1U3Y .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t8sCls1U3Y .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ffe926;
}
.cid-t8sCls1U3Y .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t8sCls1U3Y .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-t8sCls1U3Y .mbr-card-text {
  margin: 0;
}
.cid-t8sCls1U3Y .img-text {
  color: #000000;
}
.cid-rvDgSjEFuo {
  background-image: url("../../../assets/images/top-revenda-autorizada-honda-pront-loc-2000x1110.png");
}
.cid-rvDgSjEFuo .card-wrapper {
  z-index: 3;
}
.cid-rvDgSjEFuo .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rvDgSjEFuo:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rvDgSjEFuo .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rvDgSjEFuo .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rvDgSjEFuo .text-block {
  text-align: right !important;
}
.cid-t3Zf2nVXnM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3Zf2nVXnM .container-fluid {
  padding: 0 3rem;
}
.cid-t3Zf2nVXnM .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #e11428);
  display: inline-block;
}
.cid-t3Zf2nVXnM .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t3Zf2nVXnM .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-t3Zf2nVXnM .card .card-wrapper {
  height: 1%;
}
.cid-t3Zf2nVXnM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-t3Zf2nVXnM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t3Zf2nVXnM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #146dff;
}
.cid-t3Zf2nVXnM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t3Zf2nVXnM .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-t3Zf2nVXnM .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t3Zf2nVXnM .img-text {
  color: #ffffff;
}
.cid-t3Zfj4rFX9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t4j1rg1rp5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t4j1rg1rp5 .container-fluid {
  padding: 0 3rem;
}
.cid-t4j1rg1rp5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #e11428);
  display: inline-block;
}
.cid-t4j1rg1rp5 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4j1rg1rp5 .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-t4j1rg1rp5 .card .card-wrapper {
  height: 1%;
}
.cid-t4j1rg1rp5 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-t4j1rg1rp5 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t4j1rg1rp5 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #146dff;
}
.cid-t4j1rg1rp5 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t4j1rg1rp5 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-t4j1rg1rp5 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t4j1rg1rp5 .img-text {
  color: #ffffff;
}
.cid-t497MhzdeN {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t497MhzdeN .mbr-section-subtitle {
  color: #767676;
}
.cid-r6eIuv0YY3 .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-r6eIuv0YY3 .mbr-media {
  display: inline-block;
}
.cid-r6eIuv0YY3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-r6eIuv0YY3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-r6eIuv0YY3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-r6eIuv0YY3 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-r6eIuv0YY3 a.close:hover {
  color: #ffffff;
}
.cid-r6eIuv0YY3 .btn-play {
  position: relative;
  background: #66458e;
  width: 60px;
  height: 60px;
  border: 1px solid #66458e;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-r6eIuv0YY3 .btn-play:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 150%;
  height: 150%;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  left: -25%;
  top: -25%;
  opacity: 1;
  -webkit-animation: 1s play-video linear infinite;
  animation: 1s play-video linear infinite;
}
@keyframes play-video {
  0% {
    -webkit-transform: scale(0.68);
    transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
.cid-r6eERW27Lk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2666d0;
}
.cid-r6eERW27Lk .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-r6eERW27Lk .mbr-section-btn,
  .cid-r6eERW27Lk .mbr-section-subtitle,
  .cid-r6eERW27Lk .mbr-section-title {
    text-align: center !important;
  }
}
.cid-r66AujBsL0 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/frente-prontloc-2000x1110.jpg");
}
.cid-r65tgnwEsf {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r65tgnwEsf .form-control,
.cid-r65tgnwEsf .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-r65tgnwEsf .form-control:focus,
.cid-r65tgnwEsf .form-control:focus:focus {
  outline: none;
}
.cid-r65tgnwEsf input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-r65tgnwEsf input::-moz-placeholder {
  color: #5b686b;
}
.cid-r65tgnwEsf textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-r65tgnwEsf textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-r65tgnwEsf .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-r65tgnwEsf .input {
  margin-bottom: 15px;
}
.cid-r65tgnwEsf .map {
  width: 100%;
  height: 30rem;
}
.cid-r65tgnwEsf .map iframe {
  width: inherit;
  height: 100%;
}
.cid-r65tgnwEsf .mbr-text {
  color: #767676;
}
.cid-r65tgnwEsf .input-group-btn {
  display: block;
}
.cid-r65tgnwEsf .google-map {
  height: 25rem;
  position: relative;
}
.cid-r65tgnwEsf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-r65tgnwEsf .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-r65tgnwEsf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-r65tgnwEsf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-r65tgnwEsf .mbr-section-subtitle,
  .cid-r65tgnwEsf .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-r65tgnwEsf form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-r6eFxdmLKA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #365c9a;
}
.cid-r6eFxdmLKA .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-r6eFxdmLKA .mbr-section-btn,
  .cid-r6eFxdmLKA .mbr-section-subtitle,
  .cid-r6eFxdmLKA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-r6esooviBV {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/whatsapp-image-2018-06-05-at-18.13.10-1280x9607.jpg");
}
.cid-r6esqPJZDS {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r6esqPJZDS .form-control,
.cid-r6esqPJZDS .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-r6esqPJZDS .form-control:focus,
.cid-r6esqPJZDS .form-control:focus:focus {
  outline: none;
}
.cid-r6esqPJZDS input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-r6esqPJZDS input::-moz-placeholder {
  color: #5b686b;
}
.cid-r6esqPJZDS textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-r6esqPJZDS textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-r6esqPJZDS .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-r6esqPJZDS .input {
  margin-bottom: 15px;
}
.cid-r6esqPJZDS .map {
  width: 100%;
  height: 30rem;
}
.cid-r6esqPJZDS .map iframe {
  width: inherit;
  height: 100%;
}
.cid-r6esqPJZDS .mbr-text {
  color: #767676;
}
.cid-r6esqPJZDS .input-group-btn {
  display: block;
}
.cid-r6esqPJZDS .google-map {
  height: 25rem;
  position: relative;
}
.cid-r6esqPJZDS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-r6esqPJZDS .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-r6esqPJZDS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-r6esqPJZDS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-r6esqPJZDS .mbr-section-subtitle,
  .cid-r6esqPJZDS .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-r6esqPJZDS form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-r6hOabbet4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r6hOabbet4 .header-text {
  display: flex;
  align-items: center;
}
.cid-r6hOabbet4 .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-r6hOabbet4 .mbr-section-subtitle {
  color: #767676;
}
.cid-r6hOabbet4 .panel-group {
  width: 100%;
}
.cid-r6hOabbet4 .panel-text {
  color: #767676;
}
.cid-r6hOabbet4 .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-r6hOabbet4 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-r6hOabbet4 .card .card-header a.panel-title {
  justify-content: space-between;
  transition: all .3s;
  background-color: #146dff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-r6hOabbet4 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-r6hOabbet4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-r6hOabbet4 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-r6hOabbet4 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-r6hOabbet4 .card .panel-body {
  background: #efefef;
}
.cid-r6hUB4uL2n {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #146dff;
}
.cid-r6hUB4uL2n .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-r6hUB4uL2n .mbr-section-btn,
  .cid-r6hUB4uL2n .mbr-section-subtitle,
  .cid-r6hUB4uL2n .mbr-section-title {
    text-align: center !important;
  }
}
.cid-r62Z327Zw3 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r62Z327Zw3 .mbr-section-subtitle {
  color: #767676;
}
.cid-r62Z327Zw3 ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-r62Z327Zw3 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-r62Z327Zw3 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-r62Z327Zw3 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-r62Z327Zw3 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-r6ep8PFGhY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #66458e;
  background: linear-gradient(45deg, #66458e, #00d17b);
}
.cid-r6ep8PFGhY .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-r6ep8PFGhY .mbr-section-btn,
  .cid-r6ep8PFGhY .mbr-section-subtitle,
  .cid-r6ep8PFGhY .mbr-section-title {
    text-align: center !important;
  }
}
.cid-r61t1rRj7W {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-r61t1rRj7W .content {
    text-align: center;
  }
  .cid-r61t1rRj7W .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-r61t1rRj7W .img-logo img {
  height: 6rem;
}
.cid-r61t1rRj7W .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-r61t1rRj7W .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-r61t1rRj7W .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-r61t1rRj7W .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-r61t1rRj7W .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-r61t1rRj7W .social-list a:hover {
  opacity: 1;
}
.cid-r61t1rRj7W .form-group {
  width: 100%;
}
.cid-r61t1rRj7W .form-group input {
  width: 100%;
}
.cid-r61t1rRj7W .form-group input:focus {
  outline: none;
}
.cid-r61t1rRj7W .form-control {
  min-height: auto;
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-r61t1rRj7W .form-control:focus {
  outline: none;
}
.cid-r61t1rRj7W input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-r61t1rRj7W input::-moz-placeholder {
  color: #ffffff;
}
.cid-r61t1rRj7W textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-r61t1rRj7W textarea::-moz-placeholder {
  color: #ffffff;
}
.cid-r61t1rRj7W .list {
  list-style-type: none;
  padding: 0;
}
.cid-r61t1rRj7W .list li {
  padding-bottom: .5rem;
}
.cid-r61t1rRj7W .list li:last-child {
  padding-bottom: 0;
}
.cid-r61t1rRj7W .mbr-footer-list,
.cid-r61t1rRj7W .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-r61t1rRj7W .mbr-footer-list,
  .cid-r61t1rRj7W .form-text,
  .cid-r61t1rRj7W .footer-title,
  .cid-r61t1rRj7W .footer-main-title,
  .cid-r61t1rRj7W .form-text,
  .cid-r61t1rRj7W .list {
    text-align: center !important;
  }
  .cid-r61t1rRj7W .form-inline,
  .cid-r61t1rRj7W .social-list {
    justify-content: center !important;
  }
}
.cid-r61t1rRj7W .mbr-footer-list P {
  color: #c1c1c1;
}
.cid-rvWeLuVvvI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rvWeLuVvvI *:focus {
  outline: none;
}
.cid-rvWeLuVvvI .input-wrap {
  padding-bottom: 1rem;
}
.cid-rvWeLuVvvI .form-control,
.cid-rvWeLuVvvI .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-rvWeLuVvvI .form-control:focus,
.cid-rvWeLuVvvI .field:focus {
  outline: none;
}
.cid-rvWeLuVvvI input::-webkit-input-placeholder {
  color: #232323;
}
.cid-rvWeLuVvvI input::-moz-placeholder {
  color: #232323;
}
.cid-rvWeLuVvvI textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rvWeLuVvvI textarea::-moz-placeholder {
  color: #232323;
}
.cid-rvWeLuVvvI .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-rvWeLuVvvI .soc-item:hover {
  opacity: .5;
}
.cid-rvWeLuVvvI .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-rvWeLuVvvI .days-column,
.cid-rvWeLuVvvI .hours-column {
  display: inline-block;
}
.cid-rvWeLuVvvI .days-column span,
.cid-rvWeLuVvvI .hours-column span {
  display: block;
}
.cid-rvWeLuVvvI .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-rvWeLuVvvI .days-column {
    padding-right: 0 !important;
  }
  .cid-rvWeLuVvvI .hours-column {
    max-width: 50% !important;
  }
  .cid-rvWeLuVvvI .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-rvWeLuVvvI .follow-title,
.cid-rvWeLuVvvI .social-list {
  text-align: center;
}
.cid-rvWeLuVvvI .hours-column {
  text-align: left;
}
.cid-r65wd8esTK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r65wd8esTK .media-container-row {
  flex-wrap: wrap;
}
.cid-t3z8urSyXB {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/construloc-goiania-1382x8076.png");
}
.cid-t3z8urSyXB .card-wrapper {
  z-index: 3;
}
.cid-t3z8urSyXB .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-t3z8urSyXB:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-t3z8urSyXB .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-t3z8urSyXB .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t3z8urSyXB .text-block {
  text-align: right !important;
}
.cid-t3z8upUmyF {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #66458e;
}
.cid-t3z8upUmyF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t3z8upUmyF .content-row {
  flex-direction: row-reverse;
}
.cid-t3z8upUmyF .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-t3z8upUmyF .mbr-section-btn,
  .cid-t3z8upUmyF .mbr-section-subtitle,
  .cid-t3z8upUmyF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t3z8ut2knc {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t3z8ut2knc .form-control,
.cid-t3z8ut2knc .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-t3z8ut2knc .form-control:focus,
.cid-t3z8ut2knc .form-control:focus:focus {
  outline: none;
}
.cid-t3z8ut2knc input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-t3z8ut2knc input::-moz-placeholder {
  color: #5b686b;
}
.cid-t3z8ut2knc textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-t3z8ut2knc textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-t3z8ut2knc .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-t3z8ut2knc .input {
  margin-bottom: 15px;
}
.cid-t3z8ut2knc .map {
  width: 100%;
  height: 30rem;
}
.cid-t3z8ut2knc .map iframe {
  width: inherit;
  height: 100%;
}
.cid-t3z8ut2knc .mbr-text {
  color: #767676;
}
.cid-t3z8ut2knc .input-group-btn {
  display: block;
}
.cid-t3z8ut2knc .google-map {
  height: 25rem;
  position: relative;
}
.cid-t3z8ut2knc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t3z8ut2knc .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-t3z8ut2knc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t3z8ut2knc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-t3z8ut2knc .mbr-section-subtitle,
  .cid-t3z8ut2knc .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-t3z8ut2knc form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-t3z8uu9JKG .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;
  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-t3z8uu9JKG .nav-item,
.cid-t3z8uu9JKG .nav-link,
.cid-t3z8uu9JKG .navbar-caption {
  font-weight: normal;
}
.cid-t3z8uu9JKG .nav-item:focus,
.cid-t3z8uu9JKG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t3z8uu9JKG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-t3z8uu9JKG .dropdown .dropdown-menu .dropdown-item {
  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-t3z8uu9JKG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3z8uu9JKG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-t3z8uu9JKG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-t3z8uu9JKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t3z8uu9JKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-t3z8uu9JKG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3z8uu9JKG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3z8uu9JKG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffe926;
}
.cid-t3z8uu9JKG .navbar.opened {
  transition: all .3s;
  background: #ffe926 !important;
}
.cid-t3z8uu9JKG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t3z8uu9JKG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3z8uu9JKG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3z8uu9JKG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t3z8uu9JKG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t3z8uu9JKG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3z8uu9JKG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3z8uu9JKG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t3z8uu9JKG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3z8uu9JKG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3z8uu9JKG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3z8uu9JKG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3z8uu9JKG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3z8uu9JKG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t3z8uu9JKG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3z8uu9JKG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3z8uu9JKG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t3z8uu9JKG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t3z8uu9JKG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3z8uu9JKG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3z8uu9JKG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t3z8uu9JKG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3z8uu9JKG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3z8uu9JKG .navbar.navbar-short {
  background: #ffe926 !important;
  min-height: 60px;
}
.cid-t3z8uu9JKG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t3z8uu9JKG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t3z8uu9JKG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3z8uu9JKG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3z8uu9JKG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3z8uu9JKG .dropdown-item.active,
.cid-t3z8uu9JKG .dropdown-item:active {
  background-color: transparent;
}
.cid-t3z8uu9JKG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3z8uu9JKG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3z8uu9JKG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3z8uu9JKG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe926;
}
.cid-t3z8uu9JKG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3z8uu9JKG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3z8uu9JKG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3z8uu9JKG .navbar-buttons {
  text-align: center;
}
.cid-t3z8uu9JKG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3z8uu9JKG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-t3z8uu9JKG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3z8uu9JKG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3z8uu9JKG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3z8uu9JKG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3z8uu9JKG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3z8uu9JKG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3z8uu9JKG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3z8uu9JKG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3z8uu9JKG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t3z8uu9JKG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-t3z8uu9JKG .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-t3z8uu9JKG .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-t3z8uu9JKG .soc-item {
  margin: .5rem .3rem;
}
.cid-t3z8uu9JKG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3z8uu9JKG .navbar {
    height: 77px;
  }
  .cid-t3z8uu9JKG .navbar.opened {
    height: auto;
  }
  .cid-t3z8uu9JKG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3z8uvFT0w {
  background-color: #4289a7;
}
.cid-t3z8uvFT0w .row {
  align-items: center;
}
.cid-t3z8uvFT0w .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-t3z8uvFT0w .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-t3z8uvFT0w .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-t3z8uvFT0w .input-wrap input {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  width: 96%;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-t3z8uvFT0w .input-wrap input:focus {
  outline: none;
}
.cid-t3z8uvFT0w .input-group-btn {
  display: block;
}
.cid-t3z8uvFT0w .btn-row {
  padding-left: 0;
}
.cid-t3z8uvFT0w input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.cid-t3z8uvFT0w input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.cid-t3z8uvFT0w .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-t3z8uvFT0w .mbr-section-subtitle {
  color: #ffe926;
}
.cid-t3z8uvFT0w .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-t3z8uvFT0w .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t3z8uvFT0w .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3z8uvFT0w .underline .line {
    height: 2px;
  }
  .cid-t3z8uvFT0w .text-element {
    padding-bottom: 1rem;
  }
  .cid-t3z8uvFT0w .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-t3z8uvFT0w .mbr-section-subtitle,
  .cid-t3z8uvFT0w .mbr-section-title,
  .cid-t3z8uvFT0w .mbr-text,
  .cid-t3z8uvFT0w .mbr-section-btn,
  .cid-t3z8uvFT0w .form-title,
  .cid-t3z8uvFT0w .form-subtitle,
  .cid-t3z8uvFT0w input.field,
  .cid-t3z8uvFT0w .input-group-btn,
  .cid-t3z8uvFT0w .form-text {
    text-align: center !important;
  }
}
.cid-t3z8uvFT0w .form-title {
  color: #000000;
}
.cid-t3z8uvFT0w .form-subtitle,
.cid-t3z8uvFT0w input.field {
  color: #000000;
}
.cid-t3z8uvFT0w .form-text,
.cid-t3z8uvFT0w .input-group-btn {
  color: #000000;
}
.cid-t3z8uxa9pm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #66458e;
  background: linear-gradient(45deg, #66458e, #00d17b);
}
.cid-t3z8uxa9pm .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-t3z8uxa9pm .mbr-section-btn,
  .cid-t3z8uxa9pm .mbr-section-subtitle,
  .cid-t3z8uxa9pm .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t3z8uxVx3x {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t3z8uxVx3x .mbr-section-subtitle {
  color: #767676;
}
.cid-t3z8uxVx3x ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-t3z8uxVx3x ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-t3z8uxVx3x ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-t3z8uxVx3x ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-t3z8uxVx3x .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-t3z8uzyTK0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t3z8uzyTK0 .mbr-section-subtitle {
  color: #767676;
}
.cid-t3z8uzyTK0 .mbr-section-title {
  color: #ffffff;
}
.cid-t3z8uAuPYD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-t3z8uAuPYD .content {
    text-align: center;
  }
  .cid-t3z8uAuPYD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t3z8uAuPYD .img-logo img {
  height: 6rem;
}
.cid-t3z8uAuPYD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t3z8uAuPYD .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-t3z8uAuPYD .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-t3z8uAuPYD .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-t3z8uAuPYD .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t3z8uAuPYD .social-list a:hover {
  opacity: 1;
}
.cid-t3z8uAuPYD .form-group {
  width: 100%;
}
.cid-t3z8uAuPYD .form-group input {
  width: 100%;
}
.cid-t3z8uAuPYD .form-group input:focus {
  outline: none;
}
.cid-t3z8uAuPYD .form-control {
  min-height: auto;
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-t3z8uAuPYD .form-control:focus {
  outline: none;
}
.cid-t3z8uAuPYD input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-t3z8uAuPYD input::-moz-placeholder {
  color: #ffffff;
}
.cid-t3z8uAuPYD textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-t3z8uAuPYD textarea::-moz-placeholder {
  color: #ffffff;
}
.cid-t3z8uAuPYD .list {
  list-style-type: none;
  padding: 0;
}
.cid-t3z8uAuPYD .list li {
  padding-bottom: .5rem;
}
.cid-t3z8uAuPYD .list li:last-child {
  padding-bottom: 0;
}
.cid-t3z8uAuPYD .mbr-footer-list,
.cid-t3z8uAuPYD .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-t3z8uAuPYD .mbr-footer-list,
  .cid-t3z8uAuPYD .form-text,
  .cid-t3z8uAuPYD .footer-title,
  .cid-t3z8uAuPYD .footer-main-title,
  .cid-t3z8uAuPYD .form-text,
  .cid-t3z8uAuPYD .list {
    text-align: center !important;
  }
  .cid-t3z8uAuPYD .form-inline,
  .cid-t3z8uAuPYD .social-list {
    justify-content: center !important;
  }
}
.cid-t3z8uAuPYD .mbr-footer-list P {
  color: #c1c1c1;
}
.cid-t3z8uE1wRA {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3z8uE1wRA *:focus {
  outline: none;
}
.cid-t3z8uE1wRA .input-wrap {
  padding-bottom: 1rem;
}
.cid-t3z8uE1wRA .form-control,
.cid-t3z8uE1wRA .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-t3z8uE1wRA .form-control:focus,
.cid-t3z8uE1wRA .field:focus {
  outline: none;
}
.cid-t3z8uE1wRA input::-webkit-input-placeholder {
  color: #232323;
}
.cid-t3z8uE1wRA input::-moz-placeholder {
  color: #232323;
}
.cid-t3z8uE1wRA textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-t3z8uE1wRA textarea::-moz-placeholder {
  color: #232323;
}
.cid-t3z8uE1wRA .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-t3z8uE1wRA .soc-item:hover {
  opacity: .5;
}
.cid-t3z8uE1wRA .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-t3z8uE1wRA .days-column,
.cid-t3z8uE1wRA .hours-column {
  display: inline-block;
}
.cid-t3z8uE1wRA .days-column span,
.cid-t3z8uE1wRA .hours-column span {
  display: block;
}
.cid-t3z8uE1wRA .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-t3z8uE1wRA .days-column {
    padding-right: 0 !important;
  }
  .cid-t3z8uE1wRA .hours-column {
    max-width: 50% !important;
  }
  .cid-t3z8uE1wRA .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-t3z8uE1wRA .follow-title,
.cid-t3z8uE1wRA .social-list {
  text-align: center;
}
.cid-t3z8uE1wRA .hours-column {
  text-align: left;
}
.cid-t3z8uGS5Gh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t3z8uGS5Gh .media-container-row {
  flex-wrap: wrap;
}
.cid-t9snZEBK5K {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t9snZEBK5K .mbr-section-subtitle {
  color: #767676;
}
.cid-t9snZEBK5K .mbr-section-title {
  color: #2666d0;
}
#custom-html-4z {
  /* Type valid CSS here */
}
#custom-html-4z div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4z p {
  font-size: 60px;
  color: #777;
}
.cid-t7wSGIBNr1 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/construloc-goiania-1382x8076.png");
}
.cid-t7wSGIBNr1 .card-wrapper {
  z-index: 3;
}
.cid-t7wSGIBNr1 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-t7wSGIBNr1:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-t7wSGIBNr1 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-t7wSGIBNr1 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t7wSGIBNr1 .text-block {
  text-align: right !important;
}
.cid-t7x0oZE9sZ {
  background-color: #2666d0;
}
.cid-t7x0oZE9sZ .row {
  align-items: center;
}
.cid-t7x0oZE9sZ .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-t7x0oZE9sZ .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-t7x0oZE9sZ .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-t7x0oZE9sZ .input-wrap input {
  color: #000000 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  width: 96%;
  padding: .5rem 0rem;
  border-bottom: 1px solid #000000;
}
.cid-t7x0oZE9sZ .input-wrap input:focus {
  outline: none;
}
.cid-t7x0oZE9sZ .input-group-btn {
  display: block;
}
.cid-t7x0oZE9sZ .btn-row {
  padding-left: 0;
}
.cid-t7x0oZE9sZ input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.cid-t7x0oZE9sZ input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.cid-t7x0oZE9sZ .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-t7x0oZE9sZ .mbr-section-subtitle {
  color: #ffe926;
  text-align: center;
}
.cid-t7x0oZE9sZ .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-t7x0oZE9sZ .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-t7x0oZE9sZ .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t7x0oZE9sZ .underline .line {
    height: 2px;
  }
  .cid-t7x0oZE9sZ .text-element {
    padding-bottom: 1rem;
  }
  .cid-t7x0oZE9sZ .form-1 {
    padding: 2rem;
    margin: 0rem;
  }
  .cid-t7x0oZE9sZ .mbr-section-subtitle,
  .cid-t7x0oZE9sZ .mbr-section-title,
  .cid-t7x0oZE9sZ .mbr-text,
  .cid-t7x0oZE9sZ .mbr-section-btn,
  .cid-t7x0oZE9sZ .form-title,
  .cid-t7x0oZE9sZ .form-subtitle,
  .cid-t7x0oZE9sZ input.field,
  .cid-t7x0oZE9sZ .input-group-btn,
  .cid-t7x0oZE9sZ .form-text {
    text-align: center !important;
  }
}
.cid-t7x0oZE9sZ .form-title {
  color: #000000;
}
.cid-t7x0oZE9sZ .form-subtitle,
.cid-t7x0oZE9sZ input.field {
  color: #000000;
}
.cid-t7x0oZE9sZ .form-text,
.cid-t7x0oZE9sZ .input-group-btn {
  color: #000000;
}
.cid-t7x0oZE9sZ .text-element > .mbr-text,
.cid-t7x0oZE9sZ .text-element > .mbr-section-btn {
  text-align: center;
}
.cid-t7x0oZE9sZ .mbr-section-title {
  text-align: center;
}
.cid-t7wSGHVNDb {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #66458e;
}
.cid-t7wSGHVNDb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t7wSGHVNDb .content-row {
  flex-direction: row-reverse;
}
.cid-t7wSGHVNDb .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-t7wSGHVNDb .mbr-section-btn,
  .cid-t7wSGHVNDb .mbr-section-subtitle,
  .cid-t7wSGHVNDb .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t7wSGJ0FxO {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t7wSGJ0FxO .form-control,
.cid-t7wSGJ0FxO .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-t7wSGJ0FxO .form-control:focus,
.cid-t7wSGJ0FxO .form-control:focus:focus {
  outline: none;
}
.cid-t7wSGJ0FxO input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-t7wSGJ0FxO input::-moz-placeholder {
  color: #5b686b;
}
.cid-t7wSGJ0FxO textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-t7wSGJ0FxO textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-t7wSGJ0FxO .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-t7wSGJ0FxO .input {
  margin-bottom: 15px;
}
.cid-t7wSGJ0FxO .map {
  width: 100%;
  height: 30rem;
}
.cid-t7wSGJ0FxO .map iframe {
  width: inherit;
  height: 100%;
}
.cid-t7wSGJ0FxO .mbr-text {
  color: #767676;
}
.cid-t7wSGJ0FxO .input-group-btn {
  display: block;
}
.cid-t7wSGJ0FxO .google-map {
  height: 25rem;
  position: relative;
}
.cid-t7wSGJ0FxO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t7wSGJ0FxO .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-t7wSGJ0FxO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t7wSGJ0FxO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-t7wSGJ0FxO .mbr-section-subtitle,
  .cid-t7wSGJ0FxO .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-t7wSGJ0FxO form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-t7wSGJC2Wn .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;
  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-t7wSGJC2Wn .nav-item,
.cid-t7wSGJC2Wn .nav-link,
.cid-t7wSGJC2Wn .navbar-caption {
  font-weight: normal;
}
.cid-t7wSGJC2Wn .nav-item:focus,
.cid-t7wSGJC2Wn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t7wSGJC2Wn .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-t7wSGJC2Wn .dropdown .dropdown-menu .dropdown-item {
  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-t7wSGJC2Wn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t7wSGJC2Wn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-t7wSGJC2Wn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-t7wSGJC2Wn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t7wSGJC2Wn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-t7wSGJC2Wn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t7wSGJC2Wn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t7wSGJC2Wn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffe926;
}
.cid-t7wSGJC2Wn .navbar.opened {
  transition: all .3s;
  background: #ffe926 !important;
}
.cid-t7wSGJC2Wn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t7wSGJC2Wn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t7wSGJC2Wn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t7wSGJC2Wn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t7wSGJC2Wn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t7wSGJC2Wn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t7wSGJC2Wn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t7wSGJC2Wn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t7wSGJC2Wn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t7wSGJC2Wn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t7wSGJC2Wn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t7wSGJC2Wn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t7wSGJC2Wn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t7wSGJC2Wn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t7wSGJC2Wn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t7wSGJC2Wn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t7wSGJC2Wn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t7wSGJC2Wn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t7wSGJC2Wn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t7wSGJC2Wn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t7wSGJC2Wn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t7wSGJC2Wn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t7wSGJC2Wn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t7wSGJC2Wn .navbar.navbar-short {
  background: #ffe926 !important;
  min-height: 60px;
}
.cid-t7wSGJC2Wn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t7wSGJC2Wn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t7wSGJC2Wn .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t7wSGJC2Wn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t7wSGJC2Wn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t7wSGJC2Wn .dropdown-item.active,
.cid-t7wSGJC2Wn .dropdown-item:active {
  background-color: transparent;
}
.cid-t7wSGJC2Wn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t7wSGJC2Wn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t7wSGJC2Wn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t7wSGJC2Wn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe926;
}
.cid-t7wSGJC2Wn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t7wSGJC2Wn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t7wSGJC2Wn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t7wSGJC2Wn .navbar-buttons {
  text-align: center;
}
.cid-t7wSGJC2Wn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t7wSGJC2Wn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-t7wSGJC2Wn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t7wSGJC2Wn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t7wSGJC2Wn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t7wSGJC2Wn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t7wSGJC2Wn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7wSGJC2Wn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t7wSGJC2Wn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t7wSGJC2Wn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7wSGJC2Wn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t7wSGJC2Wn a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-t7wSGJC2Wn .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-t7wSGJC2Wn .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-t7wSGJC2Wn .soc-item {
  margin: .5rem .3rem;
}
.cid-t7wSGJC2Wn .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t7wSGJC2Wn .navbar {
    height: 77px;
  }
  .cid-t7wSGJC2Wn .navbar.opened {
    height: auto;
  }
  .cid-t7wSGJC2Wn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7wSGL0sYF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #66458e;
  background: linear-gradient(45deg, #66458e, #00d17b);
}
.cid-t7wSGL0sYF .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-t7wSGL0sYF .mbr-section-btn,
  .cid-t7wSGL0sYF .mbr-section-subtitle,
  .cid-t7wSGL0sYF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t7wSGLuMtb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t7wSGLuMtb .mbr-section-subtitle {
  color: #767676;
}
.cid-t7wSGLuMtb ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-t7wSGLuMtb ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-t7wSGLuMtb ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-t7wSGLuMtb ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-t7wSGLuMtb .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-t7wSGMdgjs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t7wSGMdgjs .mbr-section-subtitle {
  color: #767676;
}
.cid-t7wSGMdgjs .mbr-section-title {
  color: #ffffff;
}
.cid-t7wSGMMW4n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-t7wSGMMW4n .content {
    text-align: center;
  }
  .cid-t7wSGMMW4n .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t7wSGMMW4n .img-logo img {
  height: 6rem;
}
.cid-t7wSGMMW4n .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t7wSGMMW4n .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-t7wSGMMW4n .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-t7wSGMMW4n .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-t7wSGMMW4n .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t7wSGMMW4n .social-list a:hover {
  opacity: 1;
}
.cid-t7wSGMMW4n .form-group {
  width: 100%;
}
.cid-t7wSGMMW4n .form-group input {
  width: 100%;
}
.cid-t7wSGMMW4n .form-group input:focus {
  outline: none;
}
.cid-t7wSGMMW4n .form-control {
  min-height: auto;
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-t7wSGMMW4n .form-control:focus {
  outline: none;
}
.cid-t7wSGMMW4n input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-t7wSGMMW4n input::-moz-placeholder {
  color: #ffffff;
}
.cid-t7wSGMMW4n textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-t7wSGMMW4n textarea::-moz-placeholder {
  color: #ffffff;
}
.cid-t7wSGMMW4n .list {
  list-style-type: none;
  padding: 0;
}
.cid-t7wSGMMW4n .list li {
  padding-bottom: .5rem;
}
.cid-t7wSGMMW4n .list li:last-child {
  padding-bottom: 0;
}
.cid-t7wSGMMW4n .mbr-footer-list,
.cid-t7wSGMMW4n .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-t7wSGMMW4n .mbr-footer-list,
  .cid-t7wSGMMW4n .form-text,
  .cid-t7wSGMMW4n .footer-title,
  .cid-t7wSGMMW4n .footer-main-title,
  .cid-t7wSGMMW4n .form-text,
  .cid-t7wSGMMW4n .list {
    text-align: center !important;
  }
  .cid-t7wSGMMW4n .form-inline,
  .cid-t7wSGMMW4n .social-list {
    justify-content: center !important;
  }
}
.cid-t7wSGMMW4n .mbr-footer-list P {
  color: #c1c1c1;
}
.cid-t7wSGNyOxB {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t7wSGNyOxB *:focus {
  outline: none;
}
.cid-t7wSGNyOxB .input-wrap {
  padding-bottom: 1rem;
}
.cid-t7wSGNyOxB .form-control,
.cid-t7wSGNyOxB .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-t7wSGNyOxB .form-control:focus,
.cid-t7wSGNyOxB .field:focus {
  outline: none;
}
.cid-t7wSGNyOxB input::-webkit-input-placeholder {
  color: #232323;
}
.cid-t7wSGNyOxB input::-moz-placeholder {
  color: #232323;
}
.cid-t7wSGNyOxB textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-t7wSGNyOxB textarea::-moz-placeholder {
  color: #232323;
}
.cid-t7wSGNyOxB .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-t7wSGNyOxB .soc-item:hover {
  opacity: .5;
}
.cid-t7wSGNyOxB .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-t7wSGNyOxB .days-column,
.cid-t7wSGNyOxB .hours-column {
  display: inline-block;
}
.cid-t7wSGNyOxB .days-column span,
.cid-t7wSGNyOxB .hours-column span {
  display: block;
}
.cid-t7wSGNyOxB .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-t7wSGNyOxB .days-column {
    padding-right: 0 !important;
  }
  .cid-t7wSGNyOxB .hours-column {
    max-width: 50% !important;
  }
  .cid-t7wSGNyOxB .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-t7wSGNyOxB .follow-title,
.cid-t7wSGNyOxB .social-list {
  text-align: center;
}
.cid-t7wSGNyOxB .hours-column {
  text-align: left;
}
.cid-t7wSGOp4t7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t7wSGOp4t7 .media-container-row {
  flex-wrap: wrap;
}
