body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ef7f1a !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ef7f1a !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ef7f1a !important;
  border-color: #ef7f1a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b05a0c !important;
  border-color: #b05a0c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b05a0c !important;
  border-color: #b05a0c !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ef7f1a !important;
  border-color: #ef7f1a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b05a0c !important;
  border-color: #b05a0c !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b05a0c !important;
  border-color: #b05a0c !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !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-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-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #984e0b;
  color: #984e0b !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ef7f1a;
  border-color: #ef7f1a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ef7f1a !important;
  border-color: #ef7f1a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #984e0b;
  color: #984e0b !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ef7f1a;
  border-color: #ef7f1a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ef7f1a !important;
  border-color: #ef7f1a !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b8d56;
  color: #1b8d56 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !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: #ef7f1a !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ef7f1a !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #984e0b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #984e0b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ef7f1a;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ef7f1a;
  border-color: #ef7f1a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ef7f1a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcead9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fcead9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
.form-control {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ef7f1a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ef7f1a;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ef7f1a;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ef7f1a;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ef7f1a;
  border-bottom-color: #ef7f1a;
}
.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: #ef7f1a !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: #3e97d1 !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='%23ef7f1a' %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-rzMzee4krn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ef7f1a;
}
.cid-rzMzee4krn .navbar.opened {
  transition: all .3s;
  background: #ef7f1a !important;
}
.cid-rzMzee4krn .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #c8660e;
  color: #ffffff !important;
  background: #ef7f1a !important;
}
.cid-rzMzee4krn .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rzMzee4krn .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rzMzee4krn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzMzee4krn .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-rzMzee4krn .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ef7f1a;
}
.cid-rzMzee4krn .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rzMzee4krn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMzee4krn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMzee4krn .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-rzMzee4krn .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rzMzee4krn .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-rzMzee4krn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rzMzee4krn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMzee4krn .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-rzMzee4krn .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rzMzee4krn .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-rzMzee4krn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMzee4krn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rzMzee4krn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzMzee4krn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rzMzee4krn .navbar.navbar-short {
  background: #ef7f1a !important;
  min-height: 60px;
}
.cid-rzMzee4krn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMzee4krn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMzee4krn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzMzee4krn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzMzee4krn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMzee4krn .dropdown-item.active,
.cid-rzMzee4krn .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMzee4krn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMzee4krn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMzee4krn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMzee4krn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ef7f1a;
}
.cid-rzMzee4krn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rzMzee4krn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMzee4krn ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rzMzee4krn .navbar-buttons {
  text-align: center;
}
.cid-rzMzee4krn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ef7f1a;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMzee4krn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzMzee4krn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-rzMzee4krn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMzee4krn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rzMzee4krn .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-rzMzee4krn .nav-link:hover,
.cid-rzMzee4krn .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uuzr1PKLhe {
  background-image: url("../../../assets/images/danielateixeira-550x550.jpg");
}
.cid-uuzr1PKLhe .mbr-text,
.cid-uuzr1PKLhe .typed-text,
.cid-uuzr1PKLhe .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uuzr1PKLhe .btn {
  margin-left: 4px !important;
}
.cid-uuzr1PKLhe .animated-element {
  color: #ef7f1a;
}
.cid-uuzr1PKLhe .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ef7f1a;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uuzr1PKLhe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuzr1PKLhe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuzr1PKLhe .mbr-section-title {
  color: #ef7f1a;
}
.cid-uL5o2H5Ilq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uL5o2H5Ilq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL5o2H5Ilq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL5o2H5Ilq .row {
  justify-content: center;
}
.cid-uL5o2H5Ilq .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uL5o2H5Ilq .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uL5o2H5Ilq .content-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #ffbe0d;
}
.cid-uL5o2H5Ilq .content-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uL5o2H5Ilq .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uL5o2H5Ilq .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .cid-uL5o2H5Ilq .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uL5o2H5Ilq .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uL5o2H5Ilq .mbr-label,
.cid-uL5o2H5Ilq .label-wrapper {
  color: #FFBE0D;
  text-align: center;
}
.cid-uL5o2H5Ilq .mbr-section-title {
  color: #fff7ee;
}
.cid-uL5o2H5Ilq .mbr-text,
.cid-uL5o2H5Ilq .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uL5o2H5Ilq .mbr-section-title,
.cid-uL5o2H5Ilq .mbr-section-btn {
  text-align: center;
  color: #ef7f1a;
}
.cid-uuEYB5qwSN {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uuEYB5qwSN .item-img {
  height: 500px;
  position: relative;
}
.cid-uuEYB5qwSN .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-uuEYB5qwSN .title-block {
  top: 50%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uuEYB5qwSN .item-img:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-uuEYB5qwSN .item-img:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.2;
}
.cid-uuEYB5qwSN .new {
  transform: rotate(-90deg);
  position: absolute;
  padding: 0.5rem 2rem;
  top: 27px;
  right: -10px;
  background-color: #000000;
  color: #ba9b67;
}
.cid-uuEYB5qwSN img,
.cid-uuEYB5qwSN .item-img {
  transition: all 0.7s;
  width: 100%;
}
.cid-uuEYB5qwSN .item:focus,
.cid-uuEYB5qwSN span:focus {
  outline: none;
}
.cid-uuEYB5qwSN .item {
  cursor: pointer;
  padding-bottom: 32px;
}
.cid-uuEYB5qwSN .item-wrapper {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uuEYB5qwSN .item-title {
  text-transform: uppercase;
  margin: 0;
  color: #000000;
  text-align: left;
}
.cid-uuEYB5qwSN .item-content {
  text-align: center;
}
.cid-uuEYB5qwSN .item-title {
  margin-bottom: 10px;
}
@media (max-width: 690px) {
  .cid-uuEYB5qwSN .item {
    padding-bottom: 20px;
  }
}
.cid-uuEYB5qwSN .mbr-section-subtitle {
  color: #000000;
}
.cid-uuEYB5qwSN .text,
.cid-uuEYB5qwSN .link {
  color: #ba9b67;
}
.cid-uuEYB5qwSN .price {
  color: #9a948d;
}
.cid-uuEYB5qwSN .text {
  color: #a62a00;
}
.cid-uuEYB5qwSN .mbr-section-title {
  color: #ef7f1a;
}
.cid-uuERF2V07W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuERF2V07W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuERF2V07W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuERF2V07W .text-wrap {
  width: 100%;
}
.cid-uuERF2V07W .mbr-title {
  margin-bottom: 0;
  color: #ef7f1a;
}
.cid-uuERF2V07W .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-uuERF2V07W .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uuHIuav9AI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: #ffffff;
}
.cid-uuHIuav9AI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuHIuav9AI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuHIuav9AI .mbr-section-head {
  width: 100%;
  margin-bottom: 30px;
}
.cid-uuHIuav9AI .mbr-section-title {
  color: #ef7f1a;
  margin-bottom: 0;
}
.cid-uuHIuav9AI .mbr-section-subtitle {
  color: #1a1e21;
  margin-top: 8px;
}
.cid-uuHIuav9AI .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uuHIuav9AI form {
  width: 100%;
}
.cid-uuHIuav9AI form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-uuHIuav9AI form p {
  color: #1a1e21;
}
.cid-uuHIuav9AI form .mbr-section-btn {
  margin-top: 10px;
}
.cid-uuHIuav9AI form .mbr-section-btn .btn {
  width: 100% !important;
}
.cid-uuHIuav9AI form .form-group {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .cid-uuHIuav9AI form .form-group {
    margin-bottom: 25px !important;
  }
}
.cid-uuHIuav9AI form .form-control {
  height: 55px;
  border: 1px solid #e3ebf3 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 6px !important;
  margin-bottom: 0;
  padding: 24px 16px;
  font-size: 18px;
  line-height: 1;
  color: #6c7a88;
  font-weight: 500;
  transition: .3s;
}
.cid-uuHIuav9AI form .form-control::-webkit-input-placeholder {
  color: #6c7a88;
}
.cid-uuHIuav9AI form .form-control::-moz-placeholder {
  color: #6c7a88;
}
.cid-uuHIuav9AI form .form-control:-moz-placeholder {
  color: #6c7a88;
}
.cid-uuHIuav9AI form .form-control:-ms-input-placeholder {
  color: #6c7a88;
}
.cid-uuHIuav9AI form select {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form textarea {
  height: 150px !important;
  min-height: 140px !important;
  padding: 24px 16px;
  resize: none;
}
.cid-uuHIuav9AI form textarea::-webkit-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form textarea::-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form textarea:-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form textarea:-ms-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form input,
.cid-uuHIuav9AI form textarea {
  transition: .3s all;
}
.cid-uuHIuav9AI form input:active,
.cid-uuHIuav9AI form textarea:active,
.cid-uuHIuav9AI form input:focus,
.cid-uuHIuav9AI form textarea:focus {
  background-color: transparent !important;
  border-color: #e3ebf3 !important;
  outline: none !important;
}
.cid-uuHIuav9AI form input:active::-webkit-input-placeholder,
.cid-uuHIuav9AI form textarea:active::-webkit-input-placeholder,
.cid-uuHIuav9AI form input:focus::-webkit-input-placeholder,
.cid-uuHIuav9AI form textarea:focus::-webkit-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form input:active::-moz-placeholder,
.cid-uuHIuav9AI form textarea:active::-moz-placeholder,
.cid-uuHIuav9AI form input:focus::-moz-placeholder,
.cid-uuHIuav9AI form textarea:focus::-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form input:active:-moz-placeholder,
.cid-uuHIuav9AI form textarea:active:-moz-placeholder,
.cid-uuHIuav9AI form input:focus:-moz-placeholder,
.cid-uuHIuav9AI form textarea:focus:-moz-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form input:active:-ms-input-placeholder,
.cid-uuHIuav9AI form textarea:active:-ms-input-placeholder,
.cid-uuHIuav9AI form input:focus:-ms-input-placeholder,
.cid-uuHIuav9AI form textarea:focus:-ms-input-placeholder {
  color: #6c7a88 !important;
}
.cid-uuHIuav9AI form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-uuHIuav9AI form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-uuHIuav9AI form label {
  width: 100%;
  color: #1a1e21;
  margin-bottom: 8px;
}
.cid-uuHIuav9AI form .form-check label {
  color: #1a1e21;
}
.cid-uuHIuav9AI form .form-check-input {
  border-color: #e3ebf3 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uuHIuav9AI form .form-check-input:focus,
.cid-uuHIuav9AI form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #6c7a88 !important;
}
.cid-uuHIuav9AI form .form-check-input:checked {
  border-color: #6c7a88 !important;
  background-color: #6c7a88 !important;
}
.cid-uLcbT311H9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ef7f1a;
}
.cid-uLcbT311H9 a:link {
  text-decoration: none;
}
.cid-uLcbT311H9 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLcbT311H9 .icon-transition span:hover {
  background-color: #000000;
}
.cid-uLcbT311H9 .inner-text {
  line-height: 3em;
}
.cid-uLcbT311H9 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLcbT311H9 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLcbT311H9 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLcbT311H9 .content-text,
.cid-uLcbT311H9 .inner-text {
  color: #ffffff;
}
.cid-uL0oCupFLu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ef7f1a;
}
.cid-uL0oCupFLu .navbar.opened {
  transition: all .3s;
  background: #ef7f1a !important;
}
.cid-uL0oCupFLu .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #c8660e;
  color: #ffffff !important;
  background: #ef7f1a !important;
}
.cid-uL0oCupFLu .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uL0oCupFLu .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uL0oCupFLu .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL0oCupFLu .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uL0oCupFLu .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ef7f1a;
}
.cid-uL0oCupFLu .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uL0oCupFLu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL0oCupFLu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uL0oCupFLu .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uL0oCupFLu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL0oCupFLu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL0oCupFLu .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-uL0oCupFLu .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uL0oCupFLu .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uL0oCupFLu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL0oCupFLu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uL0oCupFLu .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uL0oCupFLu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL0oCupFLu .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uL0oCupFLu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL0oCupFLu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL0oCupFLu .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-uL0oCupFLu .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uL0oCupFLu .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uL0oCupFLu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uL0oCupFLu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL0oCupFLu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uL0oCupFLu .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uL0oCupFLu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uL0oCupFLu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uL0oCupFLu .navbar.navbar-short {
  background: #ef7f1a !important;
  min-height: 60px;
}
.cid-uL0oCupFLu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uL0oCupFLu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uL0oCupFLu .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uL0oCupFLu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL0oCupFLu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL0oCupFLu .dropdown-item.active,
.cid-uL0oCupFLu .dropdown-item:active {
  background-color: transparent;
}
.cid-uL0oCupFLu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL0oCupFLu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL0oCupFLu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL0oCupFLu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ef7f1a;
}
.cid-uL0oCupFLu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uL0oCupFLu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL0oCupFLu ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uL0oCupFLu .navbar-buttons {
  text-align: center;
}
.cid-uL0oCupFLu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uL0oCupFLu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ef7f1a;
}
.cid-uL0oCupFLu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uL0oCupFLu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uL0oCupFLu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uL0oCupFLu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uL0oCupFLu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uL0oCupFLu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uL0oCupFLu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uL0oCupFLu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uL0oCupFLu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uL0oCupFLu a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uL0oCupFLu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uL0oCupFLu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uL0oCupFLu .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uL0oCupFLu .nav-link:hover,
.cid-uL0oCupFLu .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uL0oCvBrWo {
  background-image: url("../../../assets/images/fundo-1928x1080.jpeg");
}
.cid-uL0oCvBrWo .mbr-text,
.cid-uL0oCvBrWo .typed-text,
.cid-uL0oCvBrWo .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uL0oCvBrWo .btn {
  margin-left: 4px !important;
}
.cid-uL0oCvBrWo .animated-element {
  color: #a62a00;
}
.cid-uL0oCvBrWo .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #a62a00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uL0oCvBrWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0oCvBrWo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0oCvBrWo .mbr-section-title {
  color: #ef7f1a;
}
.cid-uL0oCylVVf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uL0oCylVVf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0oCylVVf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0oCylVVf .text-wrap {
  width: 100%;
}
.cid-uL0oCylVVf .mbr-title {
  margin-bottom: 0;
  color: #ef7f1a;
}
.cid-uL0oCylVVf .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-uL0oCylVVf .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uL0rgqmwho {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uL0rgqmwho .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0rgqmwho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0rgqmwho .text-wrap {
  width: 100%;
}
.cid-uL0rgqmwho .mbr-title {
  margin-bottom: 0;
  color: #ef7f1a;
}
.cid-uL0rgqmwho .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-uL0rgqmwho .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uLOObAEriV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ef7f1a;
}
.cid-uLOObAEriV a:link {
  text-decoration: none;
}
.cid-uLOObAEriV .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLOObAEriV .icon-transition span:hover {
  background-color: #000000;
}
.cid-uLOObAEriV .inner-text {
  line-height: 3em;
}
.cid-uLOObAEriV .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLOObAEriV .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLOObAEriV .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLOObAEriV .content-text,
.cid-uLOObAEriV .inner-text {
  color: #ffffff;
}
.cid-uL1EMCZ9Bh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ef7f1a;
}
.cid-uL1EMCZ9Bh .navbar.opened {
  transition: all .3s;
  background: #ef7f1a !important;
}
.cid-uL1EMCZ9Bh .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #c8660e;
  color: #ffffff !important;
  background: #ef7f1a !important;
}
.cid-uL1EMCZ9Bh .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uL1EMCZ9Bh .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uL1EMCZ9Bh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL1EMCZ9Bh .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-uL1EMCZ9Bh .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ef7f1a;
}
.cid-uL1EMCZ9Bh .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uL1EMCZ9Bh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL1EMCZ9Bh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-uL1EMCZ9Bh .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uL1EMCZ9Bh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL1EMCZ9Bh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL1EMCZ9Bh .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-uL1EMCZ9Bh .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uL1EMCZ9Bh .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-uL1EMCZ9Bh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL1EMCZ9Bh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uL1EMCZ9Bh .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uL1EMCZ9Bh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL1EMCZ9Bh .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uL1EMCZ9Bh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL1EMCZ9Bh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL1EMCZ9Bh .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-uL1EMCZ9Bh .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uL1EMCZ9Bh .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-uL1EMCZ9Bh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uL1EMCZ9Bh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uL1EMCZ9Bh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-uL1EMCZ9Bh .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uL1EMCZ9Bh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uL1EMCZ9Bh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uL1EMCZ9Bh .navbar.navbar-short {
  background: #ef7f1a !important;
  min-height: 60px;
}
.cid-uL1EMCZ9Bh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uL1EMCZ9Bh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uL1EMCZ9Bh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uL1EMCZ9Bh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL1EMCZ9Bh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL1EMCZ9Bh .dropdown-item.active,
.cid-uL1EMCZ9Bh .dropdown-item:active {
  background-color: transparent;
}
.cid-uL1EMCZ9Bh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL1EMCZ9Bh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL1EMCZ9Bh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL1EMCZ9Bh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ef7f1a;
}
.cid-uL1EMCZ9Bh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uL1EMCZ9Bh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL1EMCZ9Bh ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uL1EMCZ9Bh .navbar-buttons {
  text-align: center;
}
.cid-uL1EMCZ9Bh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uL1EMCZ9Bh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ef7f1a;
}
.cid-uL1EMCZ9Bh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uL1EMCZ9Bh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uL1EMCZ9Bh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uL1EMCZ9Bh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uL1EMCZ9Bh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uL1EMCZ9Bh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uL1EMCZ9Bh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uL1EMCZ9Bh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uL1EMCZ9Bh .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uL1EMCZ9Bh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-uL1EMCZ9Bh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uL1EMCZ9Bh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uL1EMCZ9Bh .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-uL1EMCZ9Bh .nav-link:hover,
.cid-uL1EMCZ9Bh .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uL1EMEpOz6 {
  background-image: url("../../../assets/images/atel-2000x1500.jpeg");
}
.cid-uL1EMEpOz6 .mbr-text,
.cid-uL1EMEpOz6 .typed-text,
.cid-uL1EMEpOz6 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uL1EMEpOz6 .btn {
  margin-left: 4px !important;
}
.cid-uL1EMEpOz6 .animated-element {
  color: #a62a00;
}
.cid-uL1EMEpOz6 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #a62a00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uL1EMEpOz6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL1EMEpOz6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL1EMEpOz6 .mbr-section-title {
  color: #ef7f1a;
}
.cid-uL1EMIoAeS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uL1EMIoAeS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uL1EMIoAeS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uL1EMIoAeS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uL1EMIoAeS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uL1EMIoAeS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #000000, #ffffff) !important;
}
.cid-uL1EMIoAeS .mbr-gallery-item > div:hover::before {
  opacity: 0.4 !important;
}
.cid-uL1EMIoAeS .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #ff7140 !important;
}
.cid-uL1EMIoAeS .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-uL1EMIoAeS .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #ff7140 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-uL1EMIoAeS .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #000000 !important;
}
.cid-uL1EMIoAeS .mbr-gallery-filter ul {
  display: block;
}
.cid-uL1EMIoAeS .mbr-gallery-filter ul li {
  position: relative;
}
.cid-uL1EMIoAeS .mbr-gallery-filter li.active .btn {
  color: #000000 !important;
  background: transparent;
}
.cid-uL1EMIoAeS .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #000000 !important;
}
.cid-uL1EMIoAeS .mbr-gallery-filter li.active::after,
.cid-uL1EMIoAeS .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #000000 !important;
}
.cid-uL1EMIoAeS .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-uL1EMIoAeS .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-uL1EMIoAeS .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-uL1EMIoAeS .icon-focus:before {
  content: '\e95e';
}
.cid-uL1EMIoAeS .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-uL1EMIoAeS .mbr-section-title {
  margin: 0;
}
.cid-uL1EMIoAeS .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-uL1EMIoAeS .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uL1EMIoAeS .mbr-section-title,
.cid-uL1EMIoAeS .underline {
  color: #ff7140;
}
.cid-uL1EMIoAeS .mbr-section-subtitle {
  color: #000000;
}
.cid-uLOO8eQjP0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ef7f1a;
}
.cid-uLOO8eQjP0 a:link {
  text-decoration: none;
}
.cid-uLOO8eQjP0 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uLOO8eQjP0 .icon-transition span:hover {
  background-color: #000000;
}
.cid-uLOO8eQjP0 .inner-text {
  line-height: 3em;
}
.cid-uLOO8eQjP0 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLOO8eQjP0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uLOO8eQjP0 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uLOO8eQjP0 .content-text,
.cid-uLOO8eQjP0 .inner-text {
  color: #ffffff;
}
