body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.32rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.8 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn-secondary {
  color: black!important;
}
.btn-secondary:hover,
.btn-secondary:active {
  color: black!important;
  background: #f9ad05 !important;
  border-color: #f9ad05 !important;
}
.btn-primary {
  color: white!important;
}
.btn-primary:hover {
  background: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info {
  color: white!important;
}
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #89b758 !important;
}
.bg-info {
  background-color: #29361a !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff;
  background-color: #fbbe36;
  border-color: #fbbe36;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff;
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info,
.btn-info:active {
  background-color: #29361a !important;
  border-color: #29361a !important;
  color: #ffffff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success,
.btn-success:active {
  background-color: #89b758 !important;
  border-color: #89b758 !important;
  color: #ffffff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #c78b04;
  color: #c78b04;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #fbbe36;
  border-color: #fbbe36;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #567633;
  color: #567633;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #fbbe36 !important;
}
.text-success {
  color: #89b758 !important;
}
.text-info {
  color: #29361a !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #fdde9a !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #bbd69f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5d7b3b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #29361a;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c8ddb1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbe78;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #fbbe36 !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%;
  width: 100%;
  height: auto;
}
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='%23149dcc' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sP3eucgjS3 .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sP3eucgjS3 .nav-item:focus,
.cid-sP3eucgjS3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sP3eucgjS3 .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sP3eucgjS3 .nav-item .nav-link {
    position: relative;
  }
  .cid-sP3eucgjS3 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #149dcc, #fbbe36);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sP3eucgjS3 .nav-item.open .nav-link::before {
    bottom: 0.2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sP3eucgjS3 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sP3eucgjS3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-sP3eucgjS3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sP3eucgjS3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sP3eucgjS3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sP3eucgjS3 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sP3eucgjS3 .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sP3eucgjS3 .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sP3eucgjS3 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
  line-height: 1.6;
}
.cid-sP3eucgjS3 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sP3eucgjS3 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sP3eucgjS3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sP3eucgjS3 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sP3eucgjS3 .navbar.collapsed .navbar-collapse.show,
.cid-sP3eucgjS3 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sP3eucgjS3 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sP3eucgjS3 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sP3eucgjS3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sP3eucgjS3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sP3eucgjS3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sP3eucgjS3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sP3eucgjS3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sP3eucgjS3 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sP3eucgjS3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sP3eucgjS3 .navbar.collapsed .right-menu,
.cid-sP3eucgjS3 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sP3eucgjS3 .navbar .navbar-collapse.show,
  .cid-sP3eucgjS3 .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sP3eucgjS3 .navbar .navbar-collapse.show .brand-container,
  .cid-sP3eucgjS3 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sP3eucgjS3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sP3eucgjS3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sP3eucgjS3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sP3eucgjS3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sP3eucgjS3 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sP3eucgjS3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sP3eucgjS3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sP3eucgjS3 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sP3eucgjS3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sP3eucgjS3 .navbar .right-menu,
  .cid-sP3eucgjS3 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sP3eucgjS3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sP3eucgjS3 .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-sP3eucgjS3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sP3eucgjS3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sP3eucgjS3 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sP3eucgjS3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sP3eucgjS3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sP3eucgjS3 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sP3eucgjS3 .dropdown-item.active,
.cid-sP3eucgjS3 .dropdown-item:active {
  background-color: transparent;
}
.cid-sP3eucgjS3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sP3eucgjS3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sP3eucgjS3 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sP3eucgjS3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sP3eucgjS3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sP3eucgjS3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sP3eucgjS3 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sP3eucgjS3 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sP3eucgjS3 .navbar-buttons {
  margin-left: auto;
}
.cid-sP3eucgjS3 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sP3eucgjS3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e0e0e;
}
.cid-sP3eucgjS3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sP3eucgjS3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sP3eucgjS3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sP3eucgjS3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sP3eucgjS3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sP3eucgjS3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-sP3eucgjS3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-sP3eucgjS3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sP3eucgjS3 .navbar-dropdown {
  position: fixed;
}
.cid-sP3eucgjS3 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sP3eucgjS3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sP3eucgjS3 .right-menu,
.cid-sP3eucgjS3 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sP3eucgjS3 .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sP3eucgjS3 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sP3eucgjS3 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sP3eucgjS3 .menu-top {
  text-align: center;
  width: 100%;
  background-color: #149dcc;
  padding: 0.5rem 0;
}
.cid-sP3eucgjS3 .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sP3eucgjS3 .card-wrapper {
  z-index: 3;
}
.cid-sP3eucgjS3 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sP3eucgjS3 .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sP3eucgjS3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sP22aAHI3L {
  padding-top: 135px;
  padding-bottom: 75px;
}
.cid-sP22aAHI3L .mbr-text {
  color: #0e0e0e;
}
.cid-sP22aAHI3L .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(252, 206, 104, 0.35);
}
.cid-sP22aAHI3L .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-sP22aAHI3L .card-wrapper:hover .ico2 {
  color: #149dcc !important;
}
.cid-sP22aAHI3L .text-info:hover {
  color: inherit!important;
}
.cid-sP22aAHI3L .ico2 {
  color: #808080 !important;
  transition: all 0.6s;
}
.cid-sP22aAHI3L .card-box {
  padding: 0rem 1rem;
}
.cid-sP22aAHI3L .card-img {
  width: auto;
}
.cid-sP22aAHI3L .ico1 {
  font-size: 3rem !important;
}
.cid-sP22aAHI3L h3,
.cid-sP22aAHI3L h4 {
  padding: 0;
  margin: 0;
}
.cid-sP22aAHI3L .card-title,
.cid-sP22aAHI3L .card-img {
  color: #232323;
}
.cid-sP22aAHI3L H3 {
  color: #ffffff;
}
.cid-sP22aAHI3L H1 {
  color: #ffffff;
}
.cid-sPdk6qG046 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3fbff;
}
.cid-sPdk6qG046 h5,
.cid-sPdk6qG046 h4,
.cid-sPdk6qG046 p {
  margin-bottom: 0;
}
.cid-sPdk6qG046 p {
  color: #767676;
}
.cid-sPdk6qG046 .card-link {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-sPdk6qG046 .card-wrapper {
  transition: all 0.3s;
  background-color: #55acee;
}
.cid-sPdk6qG046 .card-wrapper .card-box {
  padding: 1.2rem;
}
.cid-sPdk6qG046 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(252, 206, 104, 0.35);
}
.cid-sPdk6qG046 .card-title-link {
  position: relative;
}
.cid-sPdk6qG046 .card-title-link:after {
  content: "";
  transition: all 0.3s;
  border-bottom: 1px solid currentColor;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
}
.cid-sPdk6qG046 .card-title-link:hover:after {
  width: 100%;
}
.cid-sPdk6qG046 .card-box {
  padding-top: 2rem;
  display: inline-block;
  width: 100%;
}
.cid-sPdk6qG046 .card-wrapper {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cid-sPdk6qG046 .card-title-link {
  color: #ffffff;
}
.cid-sPdk6qG046 .card-title {
  color: #232323;
}
.cid-sPdk6qG046 .mbr-text {
  color: #ffffff;
}
.cid-sPdk6qG046 .main-title {
  text-align: center;
  color: #767676;
}
.cid-sP29gTPL2G {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3fbff;
}
.cid-sP29gTPL2G h5,
.cid-sP29gTPL2G h4,
.cid-sP29gTPL2G p {
  margin-bottom: 0;
}
.cid-sP29gTPL2G p {
  color: #767676;
}
.cid-sP29gTPL2G .card-link {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-sP29gTPL2G .card-wrapper {
  transition: all 0.3s;
  background-color: #55acee;
}
.cid-sP29gTPL2G .card-wrapper .card-box {
  padding: 1.2rem;
}
.cid-sP29gTPL2G .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(252, 206, 104, 0.35);
}
.cid-sP29gTPL2G .card-title-link {
  position: relative;
}
.cid-sP29gTPL2G .card-title-link:after {
  content: "";
  transition: all 0.3s;
  border-bottom: 1px solid currentColor;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
}
.cid-sP29gTPL2G .card-title-link:hover:after {
  width: 100%;
}
.cid-sP29gTPL2G .card-box {
  padding-top: 2rem;
  display: inline-block;
  width: 100%;
}
.cid-sP29gTPL2G .card-wrapper {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cid-sP29gTPL2G .card-title-link {
  color: #ffffff;
}
.cid-sP29gTPL2G .card-title {
  color: #232323;
}
.cid-sP29gTPL2G .mbr-text {
  color: #ffffff;
}
.cid-u26rVlzYu9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3fbff;
}
.cid-u26rVlzYu9 h5,
.cid-u26rVlzYu9 h4,
.cid-u26rVlzYu9 p {
  margin-bottom: 0;
}
.cid-u26rVlzYu9 p {
  color: #767676;
}
.cid-u26rVlzYu9 .card-link {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-u26rVlzYu9 .card-wrapper {
  transition: all 0.3s;
  background-color: #55acee;
}
.cid-u26rVlzYu9 .card-wrapper .card-box {
  padding: 1.2rem;
}
.cid-u26rVlzYu9 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(252, 206, 104, 0.35);
}
.cid-u26rVlzYu9 .card-title-link {
  position: relative;
}
.cid-u26rVlzYu9 .card-title-link:after {
  content: "";
  transition: all 0.3s;
  border-bottom: 1px solid currentColor;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
}
.cid-u26rVlzYu9 .card-title-link:hover:after {
  width: 100%;
}
.cid-u26rVlzYu9 .card-box {
  padding-top: 2rem;
  display: inline-block;
  width: 100%;
}
.cid-u26rVlzYu9 .card-wrapper {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cid-u26rVlzYu9 .card-title-link {
  color: #ffffff;
}
.cid-u26rVlzYu9 .card-title {
  color: #232323;
}
.cid-u26rVlzYu9 .mbr-text {
  color: #ffffff;
}
.cid-u26rVlzYu9 .main-title {
  text-align: center;
  color: #767676;
}
.cid-u25OJttmvx {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f3fbff;
}
.cid-u25OJttmvx .mbr-text {
  color: #0e0e0e;
}
.cid-u25OJttmvx .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(252, 206, 104, 0.35);
}
.cid-u25OJttmvx .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-u25OJttmvx .card-wrapper:hover .ico2 {
  color: #149dcc !important;
}
.cid-u25OJttmvx .text-info:hover {
  color: inherit!important;
}
.cid-u25OJttmvx .ico2 {
  color: #808080 !important;
  transition: all 0.6s;
}
.cid-u25OJttmvx .card-box {
  padding: 0rem 1rem;
}
.cid-u25OJttmvx .card-img {
  width: auto;
}
.cid-u25OJttmvx .ico1 {
  font-size: 3rem !important;
}
.cid-u25OJttmvx h3,
.cid-u25OJttmvx h4 {
  padding: 0;
  margin: 0;
}
.cid-u25OJttmvx .card-title,
.cid-u25OJttmvx .card-img {
  color: #232323;
}
.cid-u25OJttmvx H3 {
  color: #808080;
}
.cid-u25OJttmvx H1 {
  color: #ffffff;
}
.cid-sPexZeDWOg {
  overflow-x: hidden !important;
}
.cid-sPexZeDWOg,
.cid-sPexZeDWOg .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 180px;
}
.cid-sPexZeDWOg .mbr-section-title {
  color: #ffffff;
}
.cid-sPexZeDWOg .mbr-section-title span {
  color: #149dcc;
}
.cid-sPexZeDWOg .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sPexZeDWOg .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 31s !important;
  animation-duration: 31s;
  background-image: url("../../../assets/images/novo-novo-1920x1277.jpg");
}
.cid-sPexZeDWOg .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sPexZeDWOg .mbr-overlay {
  z-index: 1;
}
.cid-sPexZeDWOg .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sP2MMAD2sf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3fbff;
}
.cid-sP3cMxdMg8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sP3cMxdMg8 .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-sP3cMxdMg8 .icon2 {
  color: #ffffff;
}
.cid-sP3cMxdMg8 .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-sP3cMxdMg8 p {
  font-weight: 400;
}
.cid-sP3cMxdMg8 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-sP3cMxdMg8 .line2 {
  background: #ffffff;
}
.cid-sP3cMxdMg8 .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #55acee;
}
.cid-sP3cMxdMg8 .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-sP3cMxdMg8 .card2 {
  background: #149dcc;
}
.cid-sP3cMxdMg8 .card-title,
.cid-sP3cMxdMg8 .card-ico,
.cid-sP3cMxdMg8 .line-wrap {
  text-align: center;
}
.cid-sP3cMxdMg8 .mbr-text,
.cid-sP3cMxdMg8 .card-link {
  text-align: center;
}
.cid-sPdn8TQpLH .google-map {
  height: 30rem;
  position: relative;
}
.cid-sPdn8TQpLH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPdn8TQpLH .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-sPdn8TQpLH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPdn8TQpLH .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-sP3ffUHPl2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0f7699;
}
