﻿.btn {
  border-width: 2px;
}
.btn {
  border-radius: 50px;
}
body {
  font-family: 'Jost', sans-serif;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.625rem;
  line-height: 1.1;
}
.display-1 > .le3-iconfont {
  font-size: 4.53125rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .le3-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .le3-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .le3-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .le3-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 2.9rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.5375rem;
    font-size: calc( 1.91875rem + (3.625 - 1.91875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91875rem + (3.625 - 1.91875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.875rem 1.3125rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ff4433 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #fab901 !important;
}
.bg-warning {
  background-color: #0746c0 !important;
}
.bg-danger {
  background-color: #5e5e5e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff4433 !important;
  border-color: #ff4433 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #db1200 !important;
  border-color: #db1200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary .btn-success:hover {
  background-color: #ff4433;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #db1200 !important;
  border-color: #db1200 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
  color: #666666 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #bababa !important;
  border-color: #bababa !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary .btn-success:hover {
  background-color: #ff4433;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #666666 !important;
  background-color: #bababa !important;
  border-color: #bababa !important;
}
.btn-info,
.btn-info:active {
  background-color: #fab901 !important;
  border-color: #fab901 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a47901 !important;
  border-color: #a47901 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info .btn-success:hover {
  background-color: #ff4433;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a47901 !important;
  border-color: #a47901 !important;
}
.btn-success,
.btn-success:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success .btn-success:hover {
  background-color: #ff4433;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0746c0 !important;
  border-color: #0746c0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #04286c !important;
  border-color: #04286c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning .btn-success:hover {
  background-color: #ff4433;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #04286c !important;
  border-color: #04286c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #5e5e5e !important;
  border-color: #5e5e5e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger .btn-success:hover {
  background-color: #ff4433;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white .btn-success:hover {
  background-color: #ff4433;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black .btn-success:hover {
  background-color: #ff4433;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ff4433;
  color: #ff4433;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #db1200 !important;
  background-color: transparent!important;
  border-color: #db1200 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4433 !important;
  border-color: #ff4433 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e5e5e5;
  color: #e5e5e5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bababa !important;
  background-color: transparent!important;
  border-color: #bababa !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #666666 !important;
  background-color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #fab901;
  color: #fab901;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a47901 !important;
  background-color: transparent!important;
  border-color: #a47901 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #fab901 !important;
  border-color: #fab901 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #0746c0;
  color: #0746c0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #04286c !important;
  background-color: transparent!important;
  border-color: #04286c !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0746c0 !important;
  border-color: #0746c0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #5e5e5e;
  color: #5e5e5e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #333333 !important;
  background-color: transparent!important;
  border-color: #333333 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #5e5e5e !important;
  border-color: #5e5e5e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff4433 !important;
}
.text-secondary {
  color: #e5e5e5 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #fab901 !important;
}
.text-warning {
  color: #0746c0 !important;
}
.text-danger {
  color: #5e5e5e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cc1100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b2b2b2 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #4d4d4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #946e01 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #03225e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2b2b2b !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #ff4433;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fab901;
}
.alert-warning {
  background-color: #0746c0;
}
.alert-danger {
  background-color: #5e5e5e;
}
.le3-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.le3-gallery-filter li a {
  border-radius: 100px !important;
}
.le3-gallery-filter li.active .btn {
  background-color: #ff4433;
  border-color: #ff4433;
  color: #ffffff;
}
.le3-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4433;
}
.le3-plan-header.bg-primary .le3-plan-subtitle,
.le3-plan-header.bg-primary .le3-plan-price-desc {
  color: #ffffff;
}
.le3-plan-header.bg-success .le3-plan-subtitle,
.le3-plan-header.bg-success .le3-plan-price-desc {
  color: #b3b3b3;
}
.le3-plan-header.bg-info .le3-plan-subtitle,
.le3-plan-header.bg-info .le3-plan-price-desc {
  color: #fff1c8;
}
.le3-plan-header.bg-warning .le3-plan-subtitle,
.le3-plan-header.bg-warning .le3-plan-price-desc {
  color: #4e88f9;
}
.le3-plan-header.bg-danger .le3-plan-subtitle,
.le3-plan-header.bg-danger .le3-plan-price-desc {
  color: #9e9e9e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .le3-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff4433 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .le3-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ff4433;
}
/* Forms */
.le3-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.le3-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.le3-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.le3-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: #ff4433;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff4433;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4433;
  border-bottom-color: #ff4433;
}
.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: #ff4433 !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: #e5e5e5 !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='%23ff4433' %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;
  font-weight: 500;
}
.btn {
  margin: 0;
}
body {
  font-family: Jost;
}
p {
  margin-bottom: 0;
}
.btn.btn-success:hover {
  background-color: #ff4433 !important;
  transition: all 0.2s ease-in-out;
  border-color: #ff4433 !important;
}
.cid-sBkqT8vCC2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBkqT8vCC2 nav.navbar {
  position: fixed;
}
.cid-sBkqT8vCC2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBkqT8vCC2 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sBkqT8vCC2 .dropdown-item:hover,
.cid-sBkqT8vCC2 .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-sBkqT8vCC2 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBkqT8vCC2 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sBkqT8vCC2 .container {
  display: flex;
  margin: auto;
}
.cid-sBkqT8vCC2 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBkqT8vCC2 .dropdown-menu,
.cid-sBkqT8vCC2 .navbar.opened {
  background: #272727 !important;
}
.cid-sBkqT8vCC2 .nav-item:focus,
.cid-sBkqT8vCC2 .nav-link:focus {
  outline: none;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBkqT8vCC2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBkqT8vCC2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBkqT8vCC2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-sBkqT8vCC2 .navbar.opened {
  transition: all 0.3s;
}
.cid-sBkqT8vCC2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBkqT8vCC2 .navbar .navbar-logo img {
  width: auto;
}
.cid-sBkqT8vCC2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBkqT8vCC2 .navbar.collapsed {
  justify-content: center;
}
.cid-sBkqT8vCC2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBkqT8vCC2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBkqT8vCC2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sBkqT8vCC2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBkqT8vCC2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBkqT8vCC2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBkqT8vCC2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sBkqT8vCC2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBkqT8vCC2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBkqT8vCC2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBkqT8vCC2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBkqT8vCC2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBkqT8vCC2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBkqT8vCC2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBkqT8vCC2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBkqT8vCC2 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBkqT8vCC2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBkqT8vCC2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBkqT8vCC2 .dropdown-item.active,
.cid-sBkqT8vCC2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sBkqT8vCC2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBkqT8vCC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-sBkqT8vCC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBkqT8vCC2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBkqT8vCC2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBkqT8vCC2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBkqT8vCC2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBkqT8vCC2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBkqT8vCC2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBkqT8vCC2 .navbar {
    height: 70px;
  }
  .cid-sBkqT8vCC2 .navbar.opened {
    height: auto;
  }
  .cid-sBkqT8vCC2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBkqT8vCC2 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sBkqT8vCC2 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sBkqT8vCC2 a {
  display: inline;
  font-weight: bold;
}
.cid-sBkqT8vCC2 img {
  display: inline;
  padding-right: 10px;
}
.cid-sBkqT8vCC2 .dropdown-toggle:after {
  display: none;
}
.cid-sBkqT8vCC2 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sBkqT8vCC2 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sBkqT8vCC2 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sBkqT8vCC2 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-sBkqT8vCC2 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-sBkqT8vCC2 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-sBkqT8vCC2 .btn {
  display: inline !important;
}
.cid-sBkqT8vCC2 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-sBkqT8vCC2 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-sBkqT8vCC2 .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-sBkqT8vCC2 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sBkqT8vCC2 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sBkqT8vCC2 .btn {
  border-radius: 50px;
}
.cid-sBkqT8vCC2 .btn-primary,
.cid-sBkqT8vCC2 .btn-primary:active {
  border-radius: 12px !important;
}
.cid-sBkqObM6i2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sBkqObM6i2 .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-sBkqObM6i2 .le3-iconfont {
  font-size: 100px;
  color: #ff4433;
}
.cid-sBkqObM6i2 .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-sBkqObM6i2 .le3-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  margin: 0;
}
.cid-sBkrfYat9Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sBkrfYat9Y .image-wrapper {
  position: relative;
}
.cid-sBkrfYat9Y .le3-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-sBkrfYat9Y .le3-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-sBkrfYat9Y img {
  width: 100%;
  border-radius: 12px;
}
.cid-sBkrfYat9Y .btn-primary,
.cid-sBkrfYat9Y .btn-primary:active {
  border-radius: 12px !important;
}
.cid-sBkSuo4Pjx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sBkSuo4Pjx .row {
  align-items: center;
  justify-content: space-between;
}
.cid-sBkSuo4Pjx .btn {
  margin: 0;
  width: 100%;
  border-radius: 12px !important;
}
.cid-sBkSuo4Pjx .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-sBkSuo4Pjx .number {
  font-size: 112px;
  color: #ffe3e1;
  font-weight: 600;
  position: absolute;
  top: -22px;
}
.cid-sBkSuo4Pjx .title {
  font-weight: 600;
  margin-left: 40px;
  position: relative;
}
.cid-sBkSuo4Pjx .top {
  padding-bottom: 15px;
}
.cid-sBkSuo4Pjx .subtitle {
  font-weight: 500;
  margin-bottom: 30px;
}
.cid-sBkSuo4Pjx .bottom {
  padding-bottom: 67px;
}
.cid-sBkSuo4Pjx .le3-text {
  padding-bottom: 30px;
}
.cid-sBkSuo4Pjx .wrapper {
  position: relative;
}
.cid-sBkSuo4Pjx p a {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-sBkSuo4Pjx p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-sBkSuo4Pjx a:hover {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%) !important;
}
.cid-sBkSuo4Pjx a.btn {
  background-image: none;
}
.cid-sBkSuo4Pjx a.btn:hover {
  background-image: none !important;
}
@media (min-width: 872px) and (max-width: 990px) {
  .cid-sBkSuo4Pjx .left {
    padding-top: 110px;
  }
}
@media (max-width: 871px) {
  .cid-sBkSuo4Pjx .left {
    padding-top: 60px;
  }
}
.cid-u0FRxIy0tr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0FRxIy0tr .le3-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-u0FRxIy0tr .le3-section-subtitle {
  color: #000000;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u0FRxIy0tr .row {
  align-items: center;
  height: 100%;
}
.cid-sEKkg7bfeK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sEKkg7bfeK .card1 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.cid-sEKkg7bfeK .card2 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.cid-sEKkg7bfeK .card3 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.cid-sEKkg7bfeK .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-sEKkg7bfeK .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-sEKkg7bfeK .le3-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-sEKkg7bfeK .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-sEKkg7bfeK .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-sEKkg7bfeK .btn-secondary,
.cid-sEKkg7bfeK .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-sEKkg7bfeK .features-image {
  margin-top: 30px;
}
.cid-sEKkg7bfeK .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-sEKkg7bfeK .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-sEKkg7bfeK .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-sEKkg7bfeK .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-sEKkg7bfeK .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-sEKkg7bfeK .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-sEKkg7bfeK .btn {
  margin: 0 13px;
  border-radius: 12px !important;
}
.cid-tXKGiLUx1R {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tXKGiLUx1R .card1 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.cid-tXKGiLUx1R .card2 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.cid-tXKGiLUx1R .card3 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.cid-tXKGiLUx1R .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-tXKGiLUx1R .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-tXKGiLUx1R .le3-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-tXKGiLUx1R .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-tXKGiLUx1R .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-tXKGiLUx1R .btn-secondary,
.cid-tXKGiLUx1R .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-tXKGiLUx1R .features-image {
  margin-top: 30px;
}
.cid-tXKGiLUx1R .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-tXKGiLUx1R .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-tXKGiLUx1R .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-tXKGiLUx1R .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-tXKGiLUx1R .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-tXKGiLUx1R .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tXKGiLUx1R .btn {
  margin: 0 13px;
  border-radius: 12px !important;
}
.cid-u0FSIuQvyj {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0FSIuQvyj .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u0FSIuQvyj .btn {
  border-radius: 12px !important;
}
.cid-u88WfI37fq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WfI37fq .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WfI37fq .btn {
  border-radius: 12px !important;
}
.cid-u88WfI37fq H4 {
  color: #ffffff;
}
.cid-u33BU8J5tH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u33BU8J5tH .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u33BU8J5tH .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u33BU8J5tH .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u33BU8J5tH .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u33BU8J5tH .navbar-nav {
    flex-direction: column;
  }
  .cid-u33BU8J5tH .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u33BU8J5tH a {
  transition: color .3s;
}
.cid-u33BU8J5tH a.text-danger:hover,
.cid-u33BU8J5tH a.text-danger:focus,
.cid-u33BU8J5tH a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4h {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4h .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4h a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4h .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4h .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4h .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-tXKzYQuBeW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tXKzYQuBeW nav.navbar {
  position: fixed;
}
.cid-tXKzYQuBeW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXKzYQuBeW .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tXKzYQuBeW .dropdown-item:hover,
.cid-tXKzYQuBeW .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-tXKzYQuBeW .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tXKzYQuBeW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXKzYQuBeW .nav-link {
  position: relative;
  padding: 0;
}
.cid-tXKzYQuBeW .container {
  display: flex;
  margin: auto;
}
.cid-tXKzYQuBeW .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXKzYQuBeW .dropdown-menu,
.cid-tXKzYQuBeW .navbar.opened {
  background: #272727 !important;
}
.cid-tXKzYQuBeW .nav-item:focus,
.cid-tXKzYQuBeW .nav-link:focus {
  outline: none;
}
.cid-tXKzYQuBeW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXKzYQuBeW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXKzYQuBeW .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXKzYQuBeW .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXKzYQuBeW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXKzYQuBeW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXKzYQuBeW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-tXKzYQuBeW .navbar.opened {
  transition: all 0.3s;
}
.cid-tXKzYQuBeW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXKzYQuBeW .navbar .navbar-logo img {
  width: auto;
}
.cid-tXKzYQuBeW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXKzYQuBeW .navbar.collapsed {
  justify-content: center;
}
.cid-tXKzYQuBeW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXKzYQuBeW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXKzYQuBeW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXKzYQuBeW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXKzYQuBeW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXKzYQuBeW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXKzYQuBeW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXKzYQuBeW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXKzYQuBeW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXKzYQuBeW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXKzYQuBeW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXKzYQuBeW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXKzYQuBeW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXKzYQuBeW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXKzYQuBeW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXKzYQuBeW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXKzYQuBeW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXKzYQuBeW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXKzYQuBeW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXKzYQuBeW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXKzYQuBeW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXKzYQuBeW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXKzYQuBeW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXKzYQuBeW .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXKzYQuBeW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXKzYQuBeW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXKzYQuBeW .dropdown-item.active,
.cid-tXKzYQuBeW .dropdown-item:active {
  background-color: transparent;
}
.cid-tXKzYQuBeW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXKzYQuBeW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXKzYQuBeW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXKzYQuBeW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-tXKzYQuBeW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXKzYQuBeW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXKzYQuBeW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXKzYQuBeW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXKzYQuBeW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXKzYQuBeW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXKzYQuBeW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXKzYQuBeW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXKzYQuBeW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXKzYQuBeW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXKzYQuBeW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXKzYQuBeW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXKzYQuBeW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXKzYQuBeW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXKzYQuBeW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXKzYQuBeW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXKzYQuBeW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXKzYQuBeW .navbar {
    height: 70px;
  }
  .cid-tXKzYQuBeW .navbar.opened {
    height: auto;
  }
  .cid-tXKzYQuBeW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXKzYQuBeW .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tXKzYQuBeW .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tXKzYQuBeW a {
  display: inline;
  font-weight: bold;
}
.cid-tXKzYQuBeW img {
  display: inline;
  padding-right: 10px;
}
.cid-tXKzYQuBeW .dropdown-toggle:after {
  display: none;
}
.cid-tXKzYQuBeW .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tXKzYQuBeW .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-tXKzYQuBeW .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tXKzYQuBeW .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-tXKzYQuBeW .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-tXKzYQuBeW .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tXKzYQuBeW .btn {
  display: inline !important;
}
.cid-tXKzYQuBeW .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tXKzYQuBeW .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tXKzYQuBeW .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-tXKzYQuBeW .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tXKzYQuBeW .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tXKzYQuBeW .btn {
  border-radius: 50px;
}
.cid-tXKzYQuBeW .btn-primary,
.cid-tXKzYQuBeW .btn-primary:active {
  border-radius: 12px !important;
}
.cid-tXKzYQURgz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXKzYQURgz .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-tXKzYQURgz .le3-iconfont {
  font-size: 100px;
  color: #ff4433;
}
.cid-tXKzYQURgz .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-tXKzYQURgz .le3-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  margin: 0;
}
.cid-tXKzYRejMZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXKzYRejMZ .image-wrapper {
  position: relative;
}
.cid-tXKzYRejMZ .le3-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-tXKzYRejMZ .le3-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-tXKzYRejMZ img {
  width: 100%;
}
.cid-tXKzYRDgv8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXKzYRDgv8 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tXKzYRDgv8 .btn {
  margin: 0;
  width: 100%;
}
.cid-tXKzYRDgv8 .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-tXKzYRDgv8 .number {
  font-size: 112px;
  color: #ffe3e1;
  font-weight: 600;
  position: absolute;
  top: -22px;
}
.cid-tXKzYRDgv8 .title {
  font-weight: 600;
  margin-left: 40px;
  position: relative;
}
.cid-tXKzYRDgv8 .top {
  padding-bottom: 15px;
}
.cid-tXKzYRDgv8 .subtitle {
  font-weight: 500;
  margin-bottom: 30px;
}
.cid-tXKzYRDgv8 .bottom {
  padding-bottom: 67px;
}
.cid-tXKzYRDgv8 .le3-text {
  padding-bottom: 30px;
}
.cid-tXKzYRDgv8 .wrapper {
  position: relative;
}
.cid-tXKzYRDgv8 p a {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-tXKzYRDgv8 p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-tXKzYRDgv8 a:hover {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%) !important;
}
.cid-tXKzYRDgv8 a.btn {
  background-image: none;
}
.cid-tXKzYRDgv8 a.btn:hover {
  background-image: none !important;
}
@media (min-width: 872px) and (max-width: 990px) {
  .cid-tXKzYRDgv8 .left {
    padding-top: 110px;
  }
}
@media (max-width: 871px) {
  .cid-tXKzYRDgv8 .left {
    padding-top: 60px;
  }
}
.cid-tXKzYS33Y5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXKzYS33Y5 .left-side {
  text-align: left;
}
.cid-tXKzYS33Y5 .width {
  width: 360px;
  margin: auto;
}
.cid-tXKzYS33Y5 .row {
  align-items: center;
  background: #1d2024;
  padding: 0px;
  margin: 0;
}
.cid-tXKzYS33Y5 .le3-section-title {
  margin: 0 0 15px;
  color: #FFFFFF;
  font-weight: 600;
}
.cid-tXKzYS33Y5 .container-fluid {
  padding: 0;
}
.cid-tXKzYS33Y5 .le3-section-subtitle {
  color: #FFFFFF;
  text-align: left;
  padding-bottom: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-tXKzYS33Y5 .right-side {
  padding: 0;
}
.cid-tXKzYS33Y5 .le3-text {
  color: #ffffff;
  padding-bottom: 60px;
  margin-bottom: 0;
}
.cid-tXKzYS33Y5 .lin .le3-iconfont {
  border-radius: 100%;
}
.cid-tXKzYS33Y5 .link-ico {
  font-size: 0.8rem !important;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  margin-left: 10px;
  margin-top: -2px;
  transition: .3s;
  display: inline-block;
}
.cid-tXKzYS33Y5 .lin:hover .link-ico {
  transform: scale(1.2);
  transition: .3s;
}
.cid-tXKzYS33Y5 a {
  font-weight: 500;
}
@media (max-width: 800px) {
  .cid-tXKzYS33Y5 .left-side {
    padding: 30px 20px;
  }
  .cid-tXKzYS33Y5 .width {
    width: 100%;
  }
}
@media (max-width: 690px) {
  .cid-tXKzYS33Y5 .left-side {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tXKzYS33Y5 .le3-text,
.cid-tXKzYS33Y5 .lin {
  text-align: left;
}
.cid-tXKzYSxfC8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXKzYSxfC8 .card1 {
  background-image: url("../../../assets/images/cover1-2-600x783.webp");
  background-size: cover;
  background-position: center;
}
.cid-tXKzYSxfC8 .card2 {
  background-image: url("../../../assets/images/cover2-2-600x783.webp");
  background-size: cover;
  background-position: center;
}
.cid-tXKzYSxfC8 .card3 {
  background-image: url("../../../assets/images/cover3-2-600x783.webp");
  background-size: cover;
  background-position: center;
}
.cid-tXKzYSxfC8 .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-tXKzYSxfC8 .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-tXKzYSxfC8 .le3-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-tXKzYSxfC8 .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-tXKzYSxfC8 .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-tXKzYSxfC8 .btn-secondary,
.cid-tXKzYSxfC8 .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-tXKzYSxfC8 .features-image {
  margin-top: 30px;
}
.cid-tXKzYSxfC8 .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-tXKzYSxfC8 .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-tXKzYSxfC8 .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-tXKzYSxfC8 .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-tXKzYSxfC8 .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-tXKzYSxfC8 .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tXKzYSxfC8 .btn {
  margin: 0 13px;
}
.cid-tXKzYT2hMi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e5e5e5;
}
.cid-tXKzYT2hMi .title {
  padding-bottom: 15px;
  color: #000000;
  font-weight: 600;
}
.cid-tXKzYT2hMi .text {
  padding-bottom: 60px;
  color: #000000;
}
.cid-tXKzYT2hMi img {
  width: 50%;
  padding: 10px 0;
}
.cid-tXKzYT2hMi .piles {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.cid-tXKzYT2hMi .pile {
  width: 369px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f7978f;
  box-sizing: border-box;
  margin: -1px -1px 0 0;
}
@media (max-width: 770px) {
  .cid-tXKzYT2hMi .pile {
    width: 50%;
  }
}
@media (max-width: 690px) {
  .cid-tXKzYT2hMi .pile {
    width: 100%;
  }
}
.cid-tXKzYTvTSW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tXKzYTvTSW .desc {
  font-weight: 600;
  padding-bottom: 45px;
}
.cid-tXKzYTvTSW .image-wrap {
  width: 370px;
  position: relative;
}
.cid-tXKzYTvTSW .text {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}
.cid-tXKzYTvTSW .soc-row {
  display: flex;
  justify-content: center;
}
.cid-tXKzYTvTSW .image1 {
  margin-left: 32%;
  width: 100%;
}
.cid-tXKzYTvTSW .image2 {
  position: absolute;
  right: 0;
  top: 90px;
  margin-right: 30px;
}
.cid-tXKzYTvTSW .card-title {
  color: #ffffff;
  padding: 0 10px;
  transition: all .3s;
  opacity: 1;
}
.cid-tXKzYTvTSW .le3-role {
  color: #ffffff;
  font-weight: 600;
  padding: 0 10px;
  transition: all .3s;
  opacity: 1;
}
.cid-tXKzYTvTSW .btn {
  margin-left: 10px;
}
.cid-tXKzYTvTSW .le3-iconfont {
  color: #000000;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 2px;
  font-size: 15px;
  margin: 7px;
}
.cid-tXKzYTvTSW .soc-item {
  transition: all .3s;
}
.cid-tXKzYTvTSW .soc-item:hover {
  transform: scale(1.1);
  transition: all .3s;
}
.cid-tXKzYTvTSW .social-row {
  position: absolute;
  opacity: 0;
  transition: all .3s;
  display: flex;
}
.cid-tXKzYTvTSW .text2 {
  transition: all .3s;
}
.cid-tXKzYTvTSW .image1:hover .card-title,
.cid-tXKzYTvTSW .image1:hover .le3-role {
  opacity: 1;
  transition: all .3s;
}
.cid-tXKzYTvTSW .image1:hover .text2 {
  margin-bottom: 70px;
  transition: all .3s;
}
.cid-tXKzYTvTSW .image1:hover .social-row {
  transform: translateY(-150%);
  transition: all .3s;
  opacity: 1;
}
.cid-tXKzYTvTSW .image2:hover .card-title,
.cid-tXKzYTvTSW .image2:hover .le3-role {
  opacity: 1;
  transition: all .3s;
}
.cid-tXKzYTvTSW .image2:hover .text2 {
  margin-bottom: 70px;
  transition: all .3s;
}
.cid-tXKzYTvTSW .image2:hover .social-row {
  transform: translateY(-150%);
  transition: all .3s;
  opacity: 1;
}
@media (max-width: 1140px) {
  .cid-tXKzYTvTSW .image1 {
    margin-left: 0;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    display: inline;
    margin-right: 7px;
  }
  .cid-tXKzYTvTSW .image2 {
    margin-top: 20px;
    position: initial;
    width: 100%;
    display: inline;
    margin-right: 0px;
    margin-left: 7px;
  }
  .cid-tXKzYTvTSW .image-row {
    display: flex;
  }
  .cid-tXKzYTvTSW .image-wrap {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .cid-tXKzYTvTSW .image-row {
    flex-direction: column;
  }
  .cid-tXKzYTvTSW .image2 {
    margin-top: 0px;
    margin-left: 0px;
  }
}
.cid-tXKzYU7ESv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXKzYU7ESv .card-wrapper {
  background: #e5e5e5;
  padding: 28% 20%;
}
.cid-tXKzYU7ESv .le3-iconfont {
  display: block;
  font-size: 5rem;
  color: #ff2b09;
  margin-bottom: 18px;
}
.cid-tXKzYU7ESv .le3-section-title {
  padding: 0;
  padding-bottom: 85px;
  margin: 0;
}
@media (max-width: 690px) {
  .cid-tXKzYU7ESv .item {
    padding-bottom: 25px;
  }
}
.cid-tXKzYU7ESv .title {
  margin-bottom: 10px;
  font-weight: 600;
}
.cid-tXKzYU7ESv .card-title,
.cid-tXKzYU7ESv .iconfont-wrapper {
  color: #ff4433;
}
.cid-tXKzYU7ESv .card-text {
  color: #ff4433;
}
@media (max-width: 990px) {
  .cid-tXKzYU7ESv .top {
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tXKzYU7ESv .top1 {
    padding-top: 20px;
  }
}
.cid-tXKzYUH6NY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tXKzYUH6NY .line {
  width: 100%;
  background-color: #e5e5e5;
  height: 1px;
  padding: 0;
}
.cid-tXKzYUH6NY .lin {
  margin-bottom: 0;
}
.cid-tXKzYUH6NY .date {
  color: #000000;
  font-weight: 600;
}
.cid-tXKzYUH6NY .inline {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}
.cid-tXKzYUH6NY .margin {
  padding-top: 3%;
  padding-bottom: 3%;
  align-items: center;
}
.cid-tXKzYUH6NY .le3-section-title {
  color: #000000;
  font-weight: 500;
  margin-bottom: 30px;
}
.cid-tXKzYUH6NY .text {
  padding-bottom: 30px;
  color: #000000;
  font-weight: 600;
}
.cid-tXKzYUH6NY .link {
  color: #ff4433;
  display: flex;
}
@media (max-width: 670px) {
  .cid-tXKzYUH6NY .inline {
    flex-direction: column;
    align-items: flex-start;
    margin-left: -50px;
  }
  .cid-tXKzYUH6NY .margin {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}
.cid-tXKzYUH6NY .title {
  color: #000000;
  font-weight: 500;
  width: 60%;
  margin-right: 30px;
  text-align: left;
}
@media (max-width: 640px) {
  .cid-tXKzYUH6NY .inline {
    margin-left: -10px;
  }
  .cid-tXKzYUH6NY .date {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}
.cid-tXKzYUH6NY svg {
  display: block;
  position: relative;
  width: 2em;
  height: auto;
  transform: translateX(-1.5em);
  transition: fill 0.5s ease, transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  fill: currentColor;
  margin-left: 13px;
}
.cid-tXKzYUH6NY .grve-arrow-line {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tXKzYUH6NY .margin:hover svg {
  transform: translateX(0);
}
.cid-tXKzYUH6NY .margin:hover .grve-arrow-line {
  transform: scaleX(1);
  transform-origin: right center;
}
@media (max-width: 690px) {
  .cid-tXKzYUH6NY .link {
    margin-top: 7px;
  }
}
.cid-tXKzYVh6zo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tXKzYVh6zo form .btn {
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 21px;
}
.cid-tXKzYVh6zo .le3-text {
  padding: 0px 30% 0;
}
.cid-tXKzYVh6zo .top {
  width: 100%;
  margin-top: 60px;
  padding: 0 17%;
}
.cid-tXKzYVh6zo .row {
  align-items: center;
}
.cid-tXKzYVh6zo h4 {
  width: 100%;
}
.cid-tXKzYVh6zo .card-heading {
  color: #ffffff;
  text-align: center;
  padding: 0 30%;
  margin-bottom: 15px;
  font-weight: 600;
}
.cid-tXKzYVh6zo .p,
.cid-tXKzYVh6zo .le3-form {
  text-align: center;
  color: #ffffff;
}
.cid-tXKzYVh6zo .button {
  position: absolute;
  right: 18px;
  top: 18px;
}
.cid-tXKzYVh6zo .form-control {
  background-color: #ffffff;
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  padding: 16px 0px;
  height: 50px;
}
.cid-tXKzYVh6zo .form-control:hover {
  box-shadow: none;
}
.cid-tXKzYVh6zo .form-group {
  margin-bottom: 0;
  position: relative;
  background-color: #ffffff;
  padding: 21px 18px;
  border-radius: 3px;
}
@media (max-width: 770px) {
  .cid-tXKzYVh6zo .button {
    position: initial;
  }
  .cid-tXKzYVh6zo .form-control {
    padding: 16px 2px;
  }
  .cid-tXKzYVh6zo .card-heading {
    padding: 0 5%;
  }
  .cid-tXKzYVh6zo .top {
    padding: 0 5%;
  }
}
@media (max-width: 870px) {
  .cid-tXKzYVh6zo .card-heading {
    padding: 0 5%;
  }
  .cid-tXKzYVh6zo .le3-text {
    padding: 0 5%;
  }
}
.cid-tXKzYVh6zo .col-auto {
  padding: 0;
}
.cid-tXKzYVh6zo .btn {
  border-radius: 50px;
}
.cid-u33BU8J5tH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u33BU8J5tH .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u33BU8J5tH .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u33BU8J5tH .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u33BU8J5tH .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u33BU8J5tH .navbar-nav {
    flex-direction: column;
  }
  .cid-u33BU8J5tH .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u33BU8J5tH a {
  transition: color .3s;
}
.cid-u33BU8J5tH a.text-danger:hover,
.cid-u33BU8J5tH a.text-danger:focus,
.cid-u33BU8J5tH a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-u7qgq6yX69 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7qgq6yX69 nav.navbar {
  position: fixed;
}
.cid-u7qgq6yX69 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qgq6yX69 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7qgq6yX69 .dropdown-item:hover,
.cid-u7qgq6yX69 .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7qgq6yX69 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7qgq6yX69 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7qgq6yX69 .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7qgq6yX69 .container {
  display: flex;
  margin: auto;
}
.cid-u7qgq6yX69 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7qgq6yX69 .dropdown-menu,
.cid-u7qgq6yX69 .navbar.opened {
  background: #272727 !important;
}
.cid-u7qgq6yX69 .nav-item:focus,
.cid-u7qgq6yX69 .nav-link:focus {
  outline: none;
}
.cid-u7qgq6yX69 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7qgq6yX69 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7qgq6yX69 .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7qgq6yX69 .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qgq6yX69 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7qgq6yX69 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7qgq6yX69 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7qgq6yX69 .navbar.opened {
  transition: all 0.3s;
}
.cid-u7qgq6yX69 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7qgq6yX69 .navbar .navbar-logo img {
  width: auto;
}
.cid-u7qgq6yX69 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7qgq6yX69 .navbar.collapsed {
  justify-content: center;
}
.cid-u7qgq6yX69 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7qgq6yX69 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7qgq6yX69 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7qgq6yX69 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7qgq6yX69 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7qgq6yX69 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7qgq6yX69 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7qgq6yX69 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7qgq6yX69 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7qgq6yX69 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7qgq6yX69 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7qgq6yX69 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7qgq6yX69 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7qgq6yX69 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7qgq6yX69 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7qgq6yX69 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7qgq6yX69 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7qgq6yX69 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7qgq6yX69 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7qgq6yX69 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7qgq6yX69 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7qgq6yX69 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7qgq6yX69 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7qgq6yX69 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7qgq6yX69 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7qgq6yX69 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7qgq6yX69 .dropdown-item.active,
.cid-u7qgq6yX69 .dropdown-item:active {
  background-color: transparent;
}
.cid-u7qgq6yX69 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7qgq6yX69 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7qgq6yX69 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7qgq6yX69 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7qgq6yX69 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7qgq6yX69 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7qgq6yX69 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7qgq6yX69 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7qgq6yX69 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7qgq6yX69 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7qgq6yX69 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7qgq6yX69 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qgq6yX69 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qgq6yX69 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7qgq6yX69 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qgq6yX69 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7qgq6yX69 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7qgq6yX69 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qgq6yX69 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7qgq6yX69 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7qgq6yX69 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7qgq6yX69 .navbar {
    height: 70px;
  }
  .cid-u7qgq6yX69 .navbar.opened {
    height: auto;
  }
  .cid-u7qgq6yX69 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7qgq6yX69 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7qgq6yX69 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7qgq6yX69 a {
  display: inline;
  font-weight: bold;
}
.cid-u7qgq6yX69 img {
  display: inline;
  padding-right: 10px;
}
.cid-u7qgq6yX69 .dropdown-toggle:after {
  display: none;
}
.cid-u7qgq6yX69 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7qgq6yX69 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7qgq6yX69 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7qgq6yX69 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7qgq6yX69 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7qgq6yX69 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7qgq6yX69 .btn {
  display: inline !important;
}
.cid-u7qgq6yX69 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7qgq6yX69 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7qgq6yX69 .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7qgq6yX69 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7qgq6yX69 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7qgq6yX69 .btn {
  border-radius: 50px;
}
.cid-u7qgq6yX69 .btn-primary,
.cid-u7qgq6yX69 .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u89jBbVWrW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u89jBbVWrW .right {
  display: flex;
  flex-direction: column;
}
.cid-u89jBbVWrW .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-u89jBbVWrW .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-u89jBbVWrW .last-p {
  padding-bottom: 0;
}
.cid-u89jBbVWrW .row {
  justify-content: center;
}
.cid-u89jBbVWrW a {
  font-weight: 600;
}
.cid-u89jBbVWrW .quote {
  padding: 1.25em 2.375em;
  color: #707070;
  background-color: #f7f7f7;
}
@media (max-width: 760px) {
  .cid-u89jBbVWrW .quote {
    padding: 15px;
  }
}
.cid-u7qgqcg3st {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7qgqcg3st .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7qgqcg3st .btn {
  border-radius: 12px !important;
}
.cid-u88WN8Tk0O {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WN8Tk0O .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WN8Tk0O .btn {
  border-radius: 12px !important;
}
.cid-u88WN8Tk0O H4 {
  color: #ffffff;
}
.cid-u7qgqdhC75 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7qgqdhC75 .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7qgqdhC75 .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7qgqdhC75 .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7qgqdhC75 .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7qgqdhC75 .navbar-nav {
    flex-direction: column;
  }
  .cid-u7qgqdhC75 .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7qgqdhC75 a {
  transition: color .3s;
}
.cid-u7qgqdhC75 a.text-danger:hover,
.cid-u7qgqdhC75 a.text-danger:focus,
.cid-u7qgqdhC75 a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4o {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4o .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4o a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4o .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4o .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4o .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u7qhcwnk0i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7qhcwnk0i nav.navbar {
  position: fixed;
}
.cid-u7qhcwnk0i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qhcwnk0i .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7qhcwnk0i .dropdown-item:hover,
.cid-u7qhcwnk0i .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7qhcwnk0i .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7qhcwnk0i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7qhcwnk0i .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7qhcwnk0i .container {
  display: flex;
  margin: auto;
}
.cid-u7qhcwnk0i .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7qhcwnk0i .dropdown-menu,
.cid-u7qhcwnk0i .navbar.opened {
  background: #272727 !important;
}
.cid-u7qhcwnk0i .nav-item:focus,
.cid-u7qhcwnk0i .nav-link:focus {
  outline: none;
}
.cid-u7qhcwnk0i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7qhcwnk0i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7qhcwnk0i .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7qhcwnk0i .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qhcwnk0i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7qhcwnk0i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7qhcwnk0i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7qhcwnk0i .navbar.opened {
  transition: all 0.3s;
}
.cid-u7qhcwnk0i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7qhcwnk0i .navbar .navbar-logo img {
  width: auto;
}
.cid-u7qhcwnk0i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7qhcwnk0i .navbar.collapsed {
  justify-content: center;
}
.cid-u7qhcwnk0i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7qhcwnk0i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7qhcwnk0i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7qhcwnk0i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7qhcwnk0i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7qhcwnk0i .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7qhcwnk0i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7qhcwnk0i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7qhcwnk0i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7qhcwnk0i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7qhcwnk0i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7qhcwnk0i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7qhcwnk0i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7qhcwnk0i .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7qhcwnk0i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7qhcwnk0i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7qhcwnk0i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7qhcwnk0i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7qhcwnk0i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7qhcwnk0i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7qhcwnk0i .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7qhcwnk0i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7qhcwnk0i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7qhcwnk0i .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7qhcwnk0i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7qhcwnk0i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7qhcwnk0i .dropdown-item.active,
.cid-u7qhcwnk0i .dropdown-item:active {
  background-color: transparent;
}
.cid-u7qhcwnk0i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7qhcwnk0i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7qhcwnk0i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7qhcwnk0i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7qhcwnk0i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7qhcwnk0i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7qhcwnk0i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7qhcwnk0i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7qhcwnk0i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7qhcwnk0i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7qhcwnk0i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7qhcwnk0i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qhcwnk0i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qhcwnk0i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7qhcwnk0i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qhcwnk0i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7qhcwnk0i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7qhcwnk0i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qhcwnk0i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7qhcwnk0i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7qhcwnk0i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7qhcwnk0i .navbar {
    height: 70px;
  }
  .cid-u7qhcwnk0i .navbar.opened {
    height: auto;
  }
  .cid-u7qhcwnk0i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7qhcwnk0i .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7qhcwnk0i .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7qhcwnk0i a {
  display: inline;
  font-weight: bold;
}
.cid-u7qhcwnk0i img {
  display: inline;
  padding-right: 10px;
}
.cid-u7qhcwnk0i .dropdown-toggle:after {
  display: none;
}
.cid-u7qhcwnk0i .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7qhcwnk0i .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7qhcwnk0i .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7qhcwnk0i .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7qhcwnk0i .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7qhcwnk0i .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7qhcwnk0i .btn {
  display: inline !important;
}
.cid-u7qhcwnk0i .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7qhcwnk0i .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7qhcwnk0i .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7qhcwnk0i .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7qhcwnk0i .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7qhcwnk0i .btn {
  border-radius: 50px;
}
.cid-u7qhcwnk0i .btn-primary,
.cid-u7qhcwnk0i .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7qmoERzxX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7qmoERzxX .le3-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-u7qmoERzxX .le3-section-subtitle {
  color: #000000;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u7qmoERzxX .row {
  align-items: center;
  height: 100%;
}
.cid-u7ql8DeeO9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f1f1f1;
}
.cid-u7ql8DeeO9 .title {
  background: #e5e5e5;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.cid-u7ql8DeeO9 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #e5e5e5;
  color: #444444;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-u7ql8DeeO9 .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-u7ql8DeeO9 .card-img {
  overflow: hidden;
}
.cid-u7ql8DeeO9 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-u7ql8DeeO9 img {
  transition: all 0.3s;
}
.cid-u7ql8DeeO9 .card-box {
  padding: 2rem;
}
.cid-u7ql8DeeO9 .le3-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #656565;
}
.cid-u7ql8DeeO9 .le3-section-title,
.cid-u7ql8DeeO9 .title DIV {
  text-align: center;
  color: #656565;
}
.cid-u7ql8DeeO9 .card-box > p,
.cid-u7ql8DeeO9 .le3-section-btn {
  color: #000000;
}
.cid-u7ql8DeeO9 .btn {
  border-radius: 12px;
}
.cid-u7qhcDdidb {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7qhcDdidb .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7qhcDdidb .btn {
  border-radius: 12px !important;
}
.cid-u88WyPi19N {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WyPi19N .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WyPi19N .btn {
  border-radius: 12px !important;
}
.cid-u88WyPi19N H4 {
  color: #ffffff;
}
.cid-u7qhcEfK4T {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7qhcEfK4T .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7qhcEfK4T .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7qhcEfK4T .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7qhcEfK4T .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7qhcEfK4T .navbar-nav {
    flex-direction: column;
  }
  .cid-u7qhcEfK4T .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7qhcEfK4T a {
  transition: color .3s;
}
.cid-u7qhcEfK4T a.text-danger:hover,
.cid-u7qhcEfK4T a.text-danger:focus,
.cid-u7qhcEfK4T a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4k {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4k .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4k a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4k .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4k .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4k .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u7qmHb0WVL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7qmHb0WVL nav.navbar {
  position: fixed;
}
.cid-u7qmHb0WVL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qmHb0WVL .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7qmHb0WVL .dropdown-item:hover,
.cid-u7qmHb0WVL .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7qmHb0WVL .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7qmHb0WVL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7qmHb0WVL .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7qmHb0WVL .container {
  display: flex;
  margin: auto;
}
.cid-u7qmHb0WVL .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7qmHb0WVL .dropdown-menu,
.cid-u7qmHb0WVL .navbar.opened {
  background: #272727 !important;
}
.cid-u7qmHb0WVL .nav-item:focus,
.cid-u7qmHb0WVL .nav-link:focus {
  outline: none;
}
.cid-u7qmHb0WVL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7qmHb0WVL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7qmHb0WVL .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7qmHb0WVL .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qmHb0WVL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7qmHb0WVL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7qmHb0WVL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7qmHb0WVL .navbar.opened {
  transition: all 0.3s;
}
.cid-u7qmHb0WVL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7qmHb0WVL .navbar .navbar-logo img {
  width: auto;
}
.cid-u7qmHb0WVL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7qmHb0WVL .navbar.collapsed {
  justify-content: center;
}
.cid-u7qmHb0WVL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7qmHb0WVL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7qmHb0WVL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7qmHb0WVL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7qmHb0WVL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7qmHb0WVL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7qmHb0WVL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7qmHb0WVL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7qmHb0WVL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7qmHb0WVL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7qmHb0WVL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7qmHb0WVL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7qmHb0WVL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7qmHb0WVL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7qmHb0WVL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7qmHb0WVL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7qmHb0WVL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7qmHb0WVL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7qmHb0WVL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7qmHb0WVL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7qmHb0WVL .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7qmHb0WVL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7qmHb0WVL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7qmHb0WVL .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7qmHb0WVL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7qmHb0WVL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7qmHb0WVL .dropdown-item.active,
.cid-u7qmHb0WVL .dropdown-item:active {
  background-color: transparent;
}
.cid-u7qmHb0WVL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7qmHb0WVL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7qmHb0WVL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7qmHb0WVL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7qmHb0WVL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7qmHb0WVL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7qmHb0WVL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7qmHb0WVL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7qmHb0WVL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7qmHb0WVL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7qmHb0WVL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7qmHb0WVL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qmHb0WVL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qmHb0WVL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7qmHb0WVL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qmHb0WVL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7qmHb0WVL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7qmHb0WVL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qmHb0WVL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7qmHb0WVL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7qmHb0WVL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7qmHb0WVL .navbar {
    height: 70px;
  }
  .cid-u7qmHb0WVL .navbar.opened {
    height: auto;
  }
  .cid-u7qmHb0WVL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7qmHb0WVL .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7qmHb0WVL .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7qmHb0WVL a {
  display: inline;
  font-weight: bold;
}
.cid-u7qmHb0WVL img {
  display: inline;
  padding-right: 10px;
}
.cid-u7qmHb0WVL .dropdown-toggle:after {
  display: none;
}
.cid-u7qmHb0WVL .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7qmHb0WVL .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7qmHb0WVL .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7qmHb0WVL .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7qmHb0WVL .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7qmHb0WVL .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7qmHb0WVL .btn {
  display: inline !important;
}
.cid-u7qmHb0WVL .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7qmHb0WVL .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7qmHb0WVL .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7qmHb0WVL .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7qmHb0WVL .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7qmHb0WVL .btn {
  border-radius: 50px;
}
.cid-u7qmHb0WVL .btn-primary,
.cid-u7qmHb0WVL .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7qmHbuB9n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7qmHbuB9n .le3-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-u7qmHbuB9n .le3-section-subtitle {
  color: #000000;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u7qmHbuB9n .row {
  align-items: center;
  height: 100%;
}
.cid-u7qn1SQk4j {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u7qn1SQk4j .le3-iconfont {
  color: #656565;
  font-size: 0.9rem;
}
.cid-u7qn1SQk4j .title,
.cid-u7qn1SQk4j .le3-section-title {
  margin-bottom: 0.5rem !important;
}
.cid-u7qn1SQk4j .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-u7qn1SQk4j .ico-wrap {
  background: #f1f1f1;
  padding: 1rem;
}
.cid-u7qn1SQk4j .phone {
  margin-bottom: 0;
  color: #656565;
  text-align: left;
}
.cid-u7qn1SQk4j .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-u7qn1SQk4j .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-u7qn1SQk4j .card-title {
  color: #274abb;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-u7qn1SQk4j .card-img {
  overflow: hidden;
}
.cid-u7qn1SQk4j .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-u7qn1SQk4j .card-box {
  padding: 0rem;
}
.cid-u7qn1SQk4j img {
  transition: all 0.3s;
}
.cid-u7qn1SQk4j .le3-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #656565;
}
.cid-u7qn1SQk4j status {
  color: #855dd8;
}
.cid-u7qn1SQk4j .status {
  color: #656565;
  text-align: left;
}
.cid-u7qmHcxeXd {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7qmHcxeXd .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7qmHcxeXd .btn {
  border-radius: 12px !important;
}
.cid-u88WJBEJv0 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WJBEJv0 .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WJBEJv0 .btn {
  border-radius: 12px !important;
}
.cid-u88WJBEJv0 H4 {
  color: #ffffff;
}
.cid-u7qmHdhxHb {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7qmHdhxHb .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7qmHdhxHb .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7qmHdhxHb .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7qmHdhxHb .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7qmHdhxHb .navbar-nav {
    flex-direction: column;
  }
  .cid-u7qmHdhxHb .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7qmHdhxHb a {
  transition: color .3s;
}
.cid-u7qmHdhxHb a.text-danger:hover,
.cid-u7qmHdhxHb a.text-danger:focus,
.cid-u7qmHdhxHb a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4n {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4n .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4n a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4n .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4n .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4n .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u7qoT5pDhF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7qoT5pDhF nav.navbar {
  position: fixed;
}
.cid-u7qoT5pDhF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qoT5pDhF .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7qoT5pDhF .dropdown-item:hover,
.cid-u7qoT5pDhF .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7qoT5pDhF .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7qoT5pDhF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7qoT5pDhF .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7qoT5pDhF .container {
  display: flex;
  margin: auto;
}
.cid-u7qoT5pDhF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7qoT5pDhF .dropdown-menu,
.cid-u7qoT5pDhF .navbar.opened {
  background: #272727 !important;
}
.cid-u7qoT5pDhF .nav-item:focus,
.cid-u7qoT5pDhF .nav-link:focus {
  outline: none;
}
.cid-u7qoT5pDhF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7qoT5pDhF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7qoT5pDhF .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7qoT5pDhF .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7qoT5pDhF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7qoT5pDhF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7qoT5pDhF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7qoT5pDhF .navbar.opened {
  transition: all 0.3s;
}
.cid-u7qoT5pDhF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7qoT5pDhF .navbar .navbar-logo img {
  width: auto;
}
.cid-u7qoT5pDhF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7qoT5pDhF .navbar.collapsed {
  justify-content: center;
}
.cid-u7qoT5pDhF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7qoT5pDhF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7qoT5pDhF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7qoT5pDhF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7qoT5pDhF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7qoT5pDhF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7qoT5pDhF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7qoT5pDhF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7qoT5pDhF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7qoT5pDhF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7qoT5pDhF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7qoT5pDhF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7qoT5pDhF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7qoT5pDhF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7qoT5pDhF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7qoT5pDhF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7qoT5pDhF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7qoT5pDhF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7qoT5pDhF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7qoT5pDhF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7qoT5pDhF .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7qoT5pDhF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7qoT5pDhF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7qoT5pDhF .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7qoT5pDhF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7qoT5pDhF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7qoT5pDhF .dropdown-item.active,
.cid-u7qoT5pDhF .dropdown-item:active {
  background-color: transparent;
}
.cid-u7qoT5pDhF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7qoT5pDhF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7qoT5pDhF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7qoT5pDhF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7qoT5pDhF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7qoT5pDhF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7qoT5pDhF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7qoT5pDhF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7qoT5pDhF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7qoT5pDhF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7qoT5pDhF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7qoT5pDhF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qoT5pDhF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7qoT5pDhF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7qoT5pDhF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qoT5pDhF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7qoT5pDhF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7qoT5pDhF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7qoT5pDhF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7qoT5pDhF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7qoT5pDhF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7qoT5pDhF .navbar {
    height: 70px;
  }
  .cid-u7qoT5pDhF .navbar.opened {
    height: auto;
  }
  .cid-u7qoT5pDhF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7qoT5pDhF .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7qoT5pDhF .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7qoT5pDhF a {
  display: inline;
  font-weight: bold;
}
.cid-u7qoT5pDhF img {
  display: inline;
  padding-right: 10px;
}
.cid-u7qoT5pDhF .dropdown-toggle:after {
  display: none;
}
.cid-u7qoT5pDhF .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7qoT5pDhF .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7qoT5pDhF .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7qoT5pDhF .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7qoT5pDhF .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7qoT5pDhF .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7qoT5pDhF .btn {
  display: inline !important;
}
.cid-u7qoT5pDhF .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7qoT5pDhF .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7qoT5pDhF .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7qoT5pDhF .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7qoT5pDhF .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7qoT5pDhF .btn {
  border-radius: 50px;
}
.cid-u7qoT5pDhF .btn-primary,
.cid-u7qoT5pDhF .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7qp50VDfL {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #e5e5e5;
}
.cid-u7qp50VDfL .le3-text {
  color: #000000;
}
.cid-u7qp50VDfL .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(255, 255, 255, 0.35);
}
.cid-u7qp50VDfL .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-u7qp50VDfL .card-wrapper:hover .ico2 {
  color: #ff4433 !important;
}
.cid-u7qp50VDfL .text-info:hover {
  color: inherit!important;
}
.cid-u7qp50VDfL .ico2 {
  color: #0746c0 !important;
  transition: all 0.6s;
}
.cid-u7qp50VDfL .card-box {
  padding: 0rem 1rem;
}
.cid-u7qp50VDfL .card-img {
  width: auto;
}
.cid-u7qp50VDfL .ico1 {
  font-size: 3.5rem !important;
}
.cid-u7qp50VDfL h3,
.cid-u7qp50VDfL h4 {
  padding: 0;
  margin: 0;
}
.cid-u7qp50VDfL .card-title,
.cid-u7qp50VDfL .card-img {
  color: #232323;
}
.cid-u7qp50VDfL H3 {
  color: #767676;
}
.cid-u7qp50VDfL H1 {
  color: #232323;
}
.cid-u7qoT6HFkh {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7qoT6HFkh .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7qoT6HFkh .btn {
  border-radius: 12px !important;
}
.cid-u88WCBxdEl {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WCBxdEl .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WCBxdEl .btn {
  border-radius: 12px !important;
}
.cid-u88WCBxdEl H4 {
  color: #ffffff;
}
.cid-u7qoT7nknD {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7qoT7nknD .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7qoT7nknD .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7qoT7nknD .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7qoT7nknD .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7qoT7nknD .navbar-nav {
    flex-direction: column;
  }
  .cid-u7qoT7nknD .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7qoT7nknD a {
  transition: color .3s;
}
.cid-u7qoT7nknD a.text-danger:hover,
.cid-u7qoT7nknD a.text-danger:focus,
.cid-u7qoT7nknD a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4l {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4l .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4l a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4l .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4l .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4l .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u7vDCYzopM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7vDCYzopM nav.navbar {
  position: fixed;
}
.cid-u7vDCYzopM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7vDCYzopM .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7vDCYzopM .dropdown-item:hover,
.cid-u7vDCYzopM .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7vDCYzopM .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7vDCYzopM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7vDCYzopM .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7vDCYzopM .container {
  display: flex;
  margin: auto;
}
.cid-u7vDCYzopM .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7vDCYzopM .dropdown-menu,
.cid-u7vDCYzopM .navbar.opened {
  background: #272727 !important;
}
.cid-u7vDCYzopM .nav-item:focus,
.cid-u7vDCYzopM .nav-link:focus {
  outline: none;
}
.cid-u7vDCYzopM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7vDCYzopM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7vDCYzopM .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7vDCYzopM .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7vDCYzopM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7vDCYzopM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7vDCYzopM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7vDCYzopM .navbar.opened {
  transition: all 0.3s;
}
.cid-u7vDCYzopM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7vDCYzopM .navbar .navbar-logo img {
  width: auto;
}
.cid-u7vDCYzopM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7vDCYzopM .navbar.collapsed {
  justify-content: center;
}
.cid-u7vDCYzopM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7vDCYzopM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7vDCYzopM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7vDCYzopM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7vDCYzopM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7vDCYzopM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7vDCYzopM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7vDCYzopM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7vDCYzopM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7vDCYzopM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7vDCYzopM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7vDCYzopM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7vDCYzopM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7vDCYzopM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7vDCYzopM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7vDCYzopM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7vDCYzopM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7vDCYzopM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7vDCYzopM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7vDCYzopM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7vDCYzopM .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7vDCYzopM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7vDCYzopM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7vDCYzopM .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7vDCYzopM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7vDCYzopM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7vDCYzopM .dropdown-item.active,
.cid-u7vDCYzopM .dropdown-item:active {
  background-color: transparent;
}
.cid-u7vDCYzopM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7vDCYzopM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7vDCYzopM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7vDCYzopM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7vDCYzopM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7vDCYzopM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7vDCYzopM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7vDCYzopM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7vDCYzopM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7vDCYzopM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7vDCYzopM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7vDCYzopM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7vDCYzopM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7vDCYzopM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7vDCYzopM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7vDCYzopM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7vDCYzopM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7vDCYzopM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7vDCYzopM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7vDCYzopM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7vDCYzopM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7vDCYzopM .navbar {
    height: 70px;
  }
  .cid-u7vDCYzopM .navbar.opened {
    height: auto;
  }
  .cid-u7vDCYzopM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7vDCYzopM .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7vDCYzopM .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7vDCYzopM a {
  display: inline;
  font-weight: bold;
}
.cid-u7vDCYzopM img {
  display: inline;
  padding-right: 10px;
}
.cid-u7vDCYzopM .dropdown-toggle:after {
  display: none;
}
.cid-u7vDCYzopM .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7vDCYzopM .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7vDCYzopM .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7vDCYzopM .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7vDCYzopM .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7vDCYzopM .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7vDCYzopM .btn {
  display: inline !important;
}
.cid-u7vDCYzopM .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7vDCYzopM .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7vDCYzopM .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7vDCYzopM .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7vDCYzopM .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7vDCYzopM .btn {
  border-radius: 50px;
}
.cid-u7vDCYzopM .btn-primary,
.cid-u7vDCYzopM .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7vE5YkfBd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f1f1f1;
}
.cid-u7vE5YkfBd .le3-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u7vE5YkfBd .le3-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7vE5YkfBd .le3-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7vE5YkfBd .le3-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u7vE5YkfBd .le3-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #e8a0a0);
}
.cid-u7vE5YkfBd .icon-focus {
  display: none;
}
.cid-u7vE5YkfBd .le3-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u7vE5YkfBd ul {
  font-size: 0;
}
.cid-u7vE5YkfBd .le3-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-u7vE5YkfBd .le3-gallery-filter ul li .btn.active,
.cid-u7vE5YkfBd .le3-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-u7vE5YkfBd .le3-gallery-filter ul li .btn.active:after,
.cid-u7vE5YkfBd .le3-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4433, #e5e5e5);
}
.cid-u7vE5YkfBd .le3-gallery-filter ul li {
  padding: 0;
}
.cid-u7vE5YkfBd .le3-gallery-item > div:hover .le3-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-u7vE5YkfBd .le3-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u7vE5YkfBd .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-u7vE5YkfBd .btn:hover {
  background: transparent !important;
}
.cid-u7vE5YkfBd .btn:hover:before {
  background: transparent !important;
}
.cid-u7vE5YkfBd .btn:before {
  background-color: transparent !important;
}
.cid-u7vE5YkfBd .btn:focus {
  box-shadow: none;
}
.cid-u7vE5YkfBd .le3-section-title {
  position: relative;
  z-index: 1;
  color: #000000;
}
.cid-u7vFgI9TRT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7vFgI9TRT .le3-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-u7vFgI9TRT .le3-section-subtitle {
  color: #000000;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u7vFgI9TRT .row {
  align-items: center;
  height: 100%;
}
.cid-u7vF8TwVyr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7vF8TwVyr .right {
  display: flex;
  flex-direction: column;
}
.cid-u7vF8TwVyr .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
}
.cid-u7vF8TwVyr .p {
  padding-bottom: 30px;
  color: #272727;
}
.cid-u7vF8TwVyr .last-p {
  padding-bottom: 0;
}
.cid-u7vF8TwVyr .row {
  justify-content: center;
}
.cid-u7vF8TwVyr a {
  font-weight: 600;
}
.cid-u7vF8TwVyr .quote {
  padding: 5px 0 5px 28px;
  color: #272727;
  border-left: 2px solid #ff4433;
}
.cid-u7vDD4nDUb {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7vDD4nDUb .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7vDD4nDUb .btn {
  border-radius: 12px !important;
}
.cid-u88WomF2rt {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WomF2rt .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WomF2rt .btn {
  border-radius: 12px !important;
}
.cid-u88WomF2rt H4 {
  color: #ffffff;
}
.cid-u7vDD5oxuT {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7vDD5oxuT .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7vDD5oxuT .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7vDD5oxuT .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7vDD5oxuT .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7vDD5oxuT .navbar-nav {
    flex-direction: column;
  }
  .cid-u7vDD5oxuT .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7vDD5oxuT a {
  transition: color .3s;
}
.cid-u7vDD5oxuT a.text-danger:hover,
.cid-u7vDD5oxuT a.text-danger:focus,
.cid-u7vDD5oxuT a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4i {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4i .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4i a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4i .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4i .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4i .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u7vIDvWeao {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7vIDvWeao nav.navbar {
  position: fixed;
}
.cid-u7vIDvWeao .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7vIDvWeao .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7vIDvWeao .dropdown-item:hover,
.cid-u7vIDvWeao .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7vIDvWeao .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7vIDvWeao .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7vIDvWeao .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7vIDvWeao .container {
  display: flex;
  margin: auto;
}
.cid-u7vIDvWeao .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7vIDvWeao .dropdown-menu,
.cid-u7vIDvWeao .navbar.opened {
  background: #272727 !important;
}
.cid-u7vIDvWeao .nav-item:focus,
.cid-u7vIDvWeao .nav-link:focus {
  outline: none;
}
.cid-u7vIDvWeao .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7vIDvWeao .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7vIDvWeao .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7vIDvWeao .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7vIDvWeao .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7vIDvWeao .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7vIDvWeao .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7vIDvWeao .navbar.opened {
  transition: all 0.3s;
}
.cid-u7vIDvWeao .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7vIDvWeao .navbar .navbar-logo img {
  width: auto;
}
.cid-u7vIDvWeao .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7vIDvWeao .navbar.collapsed {
  justify-content: center;
}
.cid-u7vIDvWeao .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7vIDvWeao .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7vIDvWeao .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7vIDvWeao .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7vIDvWeao .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7vIDvWeao .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7vIDvWeao .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7vIDvWeao .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7vIDvWeao .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7vIDvWeao .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7vIDvWeao .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7vIDvWeao .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7vIDvWeao .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7vIDvWeao .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7vIDvWeao .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7vIDvWeao .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7vIDvWeao .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7vIDvWeao .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7vIDvWeao .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7vIDvWeao .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7vIDvWeao .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7vIDvWeao .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7vIDvWeao .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7vIDvWeao .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7vIDvWeao .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7vIDvWeao .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7vIDvWeao .dropdown-item.active,
.cid-u7vIDvWeao .dropdown-item:active {
  background-color: transparent;
}
.cid-u7vIDvWeao .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7vIDvWeao .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7vIDvWeao .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7vIDvWeao .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7vIDvWeao .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7vIDvWeao .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7vIDvWeao ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7vIDvWeao .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7vIDvWeao button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7vIDvWeao button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7vIDvWeao button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7vIDvWeao button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7vIDvWeao button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7vIDvWeao button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7vIDvWeao nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7vIDvWeao nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7vIDvWeao nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7vIDvWeao nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7vIDvWeao .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7vIDvWeao a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7vIDvWeao .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7vIDvWeao .navbar {
    height: 70px;
  }
  .cid-u7vIDvWeao .navbar.opened {
    height: auto;
  }
  .cid-u7vIDvWeao .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7vIDvWeao .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7vIDvWeao .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7vIDvWeao a {
  display: inline;
  font-weight: bold;
}
.cid-u7vIDvWeao img {
  display: inline;
  padding-right: 10px;
}
.cid-u7vIDvWeao .dropdown-toggle:after {
  display: none;
}
.cid-u7vIDvWeao .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7vIDvWeao .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7vIDvWeao .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7vIDvWeao .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7vIDvWeao .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7vIDvWeao .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7vIDvWeao .btn {
  display: inline !important;
}
.cid-u7vIDvWeao .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7vIDvWeao .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7vIDvWeao .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7vIDvWeao .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7vIDvWeao .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7vIDvWeao .btn {
  border-radius: 50px;
}
.cid-u7vIDvWeao .btn-primary,
.cid-u7vIDvWeao .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7vIDwYi0V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7vIDwYi0V .le3-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-u7vIDwYi0V .le3-section-subtitle {
  color: #000000;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u7vIDwYi0V .row {
  align-items: center;
  height: 100%;
}
.cid-u7vIDxGVSq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7vIDxGVSq .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7vIDxGVSq .btn {
  border-radius: 12px !important;
}
.cid-u88WuNIwNV {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WuNIwNV .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WuNIwNV .btn {
  border-radius: 12px !important;
}
.cid-u88WuNIwNV H4 {
  color: #ffffff;
}
.cid-u7vIDyzUTt {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7vIDyzUTt .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7vIDyzUTt .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7vIDyzUTt .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7vIDyzUTt .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7vIDyzUTt .navbar-nav {
    flex-direction: column;
  }
  .cid-u7vIDyzUTt .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7vIDyzUTt a {
  transition: color .3s;
}
.cid-u7vIDyzUTt a.text-danger:hover,
.cid-u7vIDyzUTt a.text-danger:focus,
.cid-u7vIDyzUTt a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4j {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4j .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4j a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4j .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4j .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4j .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u7WnNsV88d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7WnNsV88d nav.navbar {
  position: fixed;
}
.cid-u7WnNsV88d .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7WnNsV88d .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7WnNsV88d .dropdown-item:hover,
.cid-u7WnNsV88d .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7WnNsV88d .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7WnNsV88d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7WnNsV88d .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7WnNsV88d .container {
  display: flex;
  margin: auto;
}
.cid-u7WnNsV88d .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7WnNsV88d .dropdown-menu,
.cid-u7WnNsV88d .navbar.opened {
  background: #272727 !important;
}
.cid-u7WnNsV88d .nav-item:focus,
.cid-u7WnNsV88d .nav-link:focus {
  outline: none;
}
.cid-u7WnNsV88d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7WnNsV88d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7WnNsV88d .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7WnNsV88d .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7WnNsV88d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7WnNsV88d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7WnNsV88d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7WnNsV88d .navbar.opened {
  transition: all 0.3s;
}
.cid-u7WnNsV88d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7WnNsV88d .navbar .navbar-logo img {
  width: auto;
}
.cid-u7WnNsV88d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7WnNsV88d .navbar.collapsed {
  justify-content: center;
}
.cid-u7WnNsV88d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7WnNsV88d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7WnNsV88d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7WnNsV88d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7WnNsV88d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7WnNsV88d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7WnNsV88d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7WnNsV88d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7WnNsV88d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7WnNsV88d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7WnNsV88d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7WnNsV88d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7WnNsV88d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7WnNsV88d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7WnNsV88d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7WnNsV88d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7WnNsV88d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7WnNsV88d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7WnNsV88d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7WnNsV88d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7WnNsV88d .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7WnNsV88d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7WnNsV88d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7WnNsV88d .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7WnNsV88d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7WnNsV88d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7WnNsV88d .dropdown-item.active,
.cid-u7WnNsV88d .dropdown-item:active {
  background-color: transparent;
}
.cid-u7WnNsV88d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7WnNsV88d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7WnNsV88d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7WnNsV88d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7WnNsV88d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7WnNsV88d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7WnNsV88d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7WnNsV88d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7WnNsV88d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7WnNsV88d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7WnNsV88d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7WnNsV88d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7WnNsV88d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7WnNsV88d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7WnNsV88d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7WnNsV88d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7WnNsV88d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7WnNsV88d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7WnNsV88d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7WnNsV88d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7WnNsV88d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7WnNsV88d .navbar {
    height: 70px;
  }
  .cid-u7WnNsV88d .navbar.opened {
    height: auto;
  }
  .cid-u7WnNsV88d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7WnNsV88d .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7WnNsV88d .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7WnNsV88d a {
  display: inline;
  font-weight: bold;
}
.cid-u7WnNsV88d img {
  display: inline;
  padding-right: 10px;
}
.cid-u7WnNsV88d .dropdown-toggle:after {
  display: none;
}
.cid-u7WnNsV88d .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7WnNsV88d .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7WnNsV88d .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7WnNsV88d .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7WnNsV88d .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7WnNsV88d .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7WnNsV88d .btn {
  display: inline !important;
}
.cid-u7WnNsV88d .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7WnNsV88d .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7WnNsV88d .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7WnNsV88d .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7WnNsV88d .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7WnNsV88d .btn {
  border-radius: 50px;
}
.cid-u7WnNsV88d .btn-primary,
.cid-u7WnNsV88d .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7WoqRsCAW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e5e5e5;
}
.cid-u7WoqRsCAW .le3-text {
  color: #000000;
}
.cid-u7WoqRsCAW .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(255, 255, 255, 0.35);
}
.cid-u7WoqRsCAW .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-u7WoqRsCAW .card-wrapper:hover .ico2 {
  color: #ff4433 !important;
}
.cid-u7WoqRsCAW .text-info:hover {
  color: inherit!important;
}
.cid-u7WoqRsCAW .ico2 {
  color: #0746c0 !important;
  transition: all 0.6s;
}
.cid-u7WoqRsCAW .card-box {
  padding: 0rem 1rem;
}
.cid-u7WoqRsCAW .card-img {
  width: auto;
}
.cid-u7WoqRsCAW .ico1 {
  font-size: 5rem !important;
}
.cid-u7WoqRsCAW h3,
.cid-u7WoqRsCAW h4 {
  padding: 0;
  margin: 0;
}
.cid-u7WoqRsCAW .card-title,
.cid-u7WoqRsCAW .card-img {
  color: #232323;
}
.cid-u7WoqRsCAW H3 {
  color: #767676;
}
.cid-u7WoqRsCAW H1 {
  color: #232323;
}
.cid-u7WnNuErAo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7WnNuErAo .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7WnNuErAo .btn {
  border-radius: 12px !important;
}
.cid-u88WG7I1NU {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88WG7I1NU .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88WG7I1NU .btn {
  border-radius: 12px !important;
}
.cid-u88WG7I1NU H4 {
  color: #ffffff;
}
.cid-u7WnNvqx8y {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7WnNvqx8y .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7WnNvqx8y .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7WnNvqx8y .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7WnNvqx8y .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7WnNvqx8y .navbar-nav {
    flex-direction: column;
  }
  .cid-u7WnNvqx8y .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7WnNvqx8y a {
  transition: color .3s;
}
.cid-u7WnNvqx8y a.text-danger:hover,
.cid-u7WnNvqx8y a.text-danger:focus,
.cid-u7WnNvqx8y a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4m {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4m .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4m a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4m .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4m .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4m .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u7WpmxJbvV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7WpmxJbvV nav.navbar {
  position: fixed;
}
.cid-u7WpmxJbvV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7WpmxJbvV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7WpmxJbvV .dropdown-item:hover,
.cid-u7WpmxJbvV .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7WpmxJbvV .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7WpmxJbvV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7WpmxJbvV .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7WpmxJbvV .container {
  display: flex;
  margin: auto;
}
.cid-u7WpmxJbvV .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7WpmxJbvV .dropdown-menu,
.cid-u7WpmxJbvV .navbar.opened {
  background: #272727 !important;
}
.cid-u7WpmxJbvV .nav-item:focus,
.cid-u7WpmxJbvV .nav-link:focus {
  outline: none;
}
.cid-u7WpmxJbvV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7WpmxJbvV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7WpmxJbvV .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7WpmxJbvV .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7WpmxJbvV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7WpmxJbvV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7WpmxJbvV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7WpmxJbvV .navbar.opened {
  transition: all 0.3s;
}
.cid-u7WpmxJbvV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7WpmxJbvV .navbar .navbar-logo img {
  width: auto;
}
.cid-u7WpmxJbvV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7WpmxJbvV .navbar.collapsed {
  justify-content: center;
}
.cid-u7WpmxJbvV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7WpmxJbvV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7WpmxJbvV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7WpmxJbvV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7WpmxJbvV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7WpmxJbvV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7WpmxJbvV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7WpmxJbvV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7WpmxJbvV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7WpmxJbvV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7WpmxJbvV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7WpmxJbvV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7WpmxJbvV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7WpmxJbvV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7WpmxJbvV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7WpmxJbvV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7WpmxJbvV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7WpmxJbvV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7WpmxJbvV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7WpmxJbvV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7WpmxJbvV .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7WpmxJbvV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7WpmxJbvV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7WpmxJbvV .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7WpmxJbvV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7WpmxJbvV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7WpmxJbvV .dropdown-item.active,
.cid-u7WpmxJbvV .dropdown-item:active {
  background-color: transparent;
}
.cid-u7WpmxJbvV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7WpmxJbvV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7WpmxJbvV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7WpmxJbvV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7WpmxJbvV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7WpmxJbvV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7WpmxJbvV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7WpmxJbvV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7WpmxJbvV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7WpmxJbvV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7WpmxJbvV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7WpmxJbvV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7WpmxJbvV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7WpmxJbvV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7WpmxJbvV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7WpmxJbvV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7WpmxJbvV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7WpmxJbvV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7WpmxJbvV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7WpmxJbvV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7WpmxJbvV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7WpmxJbvV .navbar {
    height: 70px;
  }
  .cid-u7WpmxJbvV .navbar.opened {
    height: auto;
  }
  .cid-u7WpmxJbvV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7WpmxJbvV .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7WpmxJbvV .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7WpmxJbvV a {
  display: inline;
  font-weight: bold;
}
.cid-u7WpmxJbvV img {
  display: inline;
  padding-right: 10px;
}
.cid-u7WpmxJbvV .dropdown-toggle:after {
  display: none;
}
.cid-u7WpmxJbvV .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7WpmxJbvV .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7WpmxJbvV .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7WpmxJbvV .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7WpmxJbvV .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7WpmxJbvV .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7WpmxJbvV .btn {
  display: inline !important;
}
.cid-u7WpmxJbvV .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7WpmxJbvV .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7WpmxJbvV .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7WpmxJbvV .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7WpmxJbvV .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7WpmxJbvV .btn {
  border-radius: 50px;
}
.cid-u7WpmxJbvV .btn-primary,
.cid-u7WpmxJbvV .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7WpmycSDo {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #e5e5e5;
}
.cid-u7WpmycSDo .le3-text {
  color: #000000;
}
.cid-u7WpmycSDo .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(255, 255, 255, 0.35);
}
.cid-u7WpmycSDo .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-u7WpmycSDo .card-wrapper:hover .ico2 {
  color: #ff4433 !important;
}
.cid-u7WpmycSDo .text-info:hover {
  color: inherit!important;
}
.cid-u7WpmycSDo .ico2 {
  color: #0746c0 !important;
  transition: all 0.6s;
}
.cid-u7WpmycSDo .card-box {
  padding: 0rem 1rem;
}
.cid-u7WpmycSDo .card-img {
  width: auto;
}
.cid-u7WpmycSDo .ico1 {
  font-size: 3.5rem !important;
}
.cid-u7WpmycSDo h3,
.cid-u7WpmycSDo h4 {
  padding: 0;
  margin: 0;
}
.cid-u7WpmycSDo .card-title,
.cid-u7WpmycSDo .card-img {
  color: #232323;
}
.cid-u7WpmycSDo H3 {
  color: #767676;
}
.cid-u7WpmycSDo H1 {
  color: #232323;
}
.cid-u7WpmyEb5s {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #e5e5e5;
}
.cid-u7WpmyEb5s .le3-text {
  color: #000000;
}
.cid-u7WpmyEb5s .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(255, 255, 255, 0.35);
}
.cid-u7WpmyEb5s .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-u7WpmyEb5s .card-wrapper:hover .ico2 {
  color: #ff4433 !important;
}
.cid-u7WpmyEb5s .text-info:hover {
  color: inherit!important;
}
.cid-u7WpmyEb5s .ico2 {
  color: #0746c0 !important;
  transition: all 0.6s;
}
.cid-u7WpmyEb5s .card-box {
  padding: 0rem 1rem;
}
.cid-u7WpmyEb5s .card-img {
  width: auto;
}
.cid-u7WpmyEb5s .ico1 {
  font-size: 3.5rem !important;
}
.cid-u7WpmyEb5s h3,
.cid-u7WpmyEb5s h4 {
  padding: 0;
  margin: 0;
}
.cid-u7WpmyEb5s .card-title,
.cid-u7WpmyEb5s .card-img {
  color: #232323;
}
.cid-u7WpmyEb5s H3 {
  color: #767676;
}
.cid-u7WpmyEb5s H1 {
  color: #232323;
}
.cid-u7Wpmz7H1t {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7Wpmz7H1t .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7Wpmz7H1t .btn {
  border-radius: 12px !important;
}
.cid-u7WpmzvjlB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u7WpmzvjlB form .btn {
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 21px;
  border-radius: 12px !important;
}
.cid-u7WpmzvjlB .le3-text {
  padding: 0px 30% 0;
}
.cid-u7WpmzvjlB .top {
  width: 100%;
  margin-top: 60px;
  padding: 0 17%;
}
.cid-u7WpmzvjlB .row {
  align-items: center;
}
.cid-u7WpmzvjlB h4 {
  width: 100%;
}
.cid-u7WpmzvjlB .card-heading {
  color: #ffffff;
  text-align: center;
  padding: 0 30%;
  margin-bottom: 15px;
  font-weight: 600;
}
.cid-u7WpmzvjlB .p,
.cid-u7WpmzvjlB .le3-form {
  text-align: center;
  color: #ffffff;
}
.cid-u7WpmzvjlB .button {
  position: absolute;
  right: 18px;
  top: 18px;
}
.cid-u7WpmzvjlB .form-control {
  background-color: #ffffff;
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  padding: 16px 0px;
  height: 50px;
}
.cid-u7WpmzvjlB .form-control:hover {
  box-shadow: none;
}
.cid-u7WpmzvjlB .form-group {
  margin-bottom: 0;
  position: relative;
  background-color: #ffffff;
  padding: 21px 18px;
  border-radius: 3px;
}
@media (max-width: 770px) {
  .cid-u7WpmzvjlB .button {
    position: initial;
  }
  .cid-u7WpmzvjlB .form-control {
    padding: 16px 2px;
  }
  .cid-u7WpmzvjlB .card-heading {
    padding: 0 5%;
  }
  .cid-u7WpmzvjlB .top {
    padding: 0 5%;
  }
}
@media (max-width: 870px) {
  .cid-u7WpmzvjlB .card-heading {
    padding: 0 5%;
  }
  .cid-u7WpmzvjlB .le3-text {
    padding: 0 5%;
  }
}
.cid-u7WpmzvjlB .col-auto {
  padding: 0;
}
.cid-u7WpmzvjlB .btn {
  border-radius: 50px;
}
.cid-u7WpmzT4Bw {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7WpmzT4Bw .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7WpmzT4Bw .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7WpmzT4Bw .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7WpmzT4Bw .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7WpmzT4Bw .navbar-nav {
    flex-direction: column;
  }
  .cid-u7WpmzT4Bw .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7WpmzT4Bw a {
  transition: color .3s;
}
.cid-u7WpmzT4Bw a.text-danger:hover,
.cid-u7WpmzT4Bw a.text-danger:focus,
.cid-u7WpmzT4Bw a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-u7Wrx0LRnx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7Wrx0LRnx nav.navbar {
  position: fixed;
}
.cid-u7Wrx0LRnx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7Wrx0LRnx .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7Wrx0LRnx .dropdown-item:hover,
.cid-u7Wrx0LRnx .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7Wrx0LRnx .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7Wrx0LRnx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7Wrx0LRnx .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7Wrx0LRnx .container {
  display: flex;
  margin: auto;
}
.cid-u7Wrx0LRnx .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7Wrx0LRnx .dropdown-menu,
.cid-u7Wrx0LRnx .navbar.opened {
  background: #272727 !important;
}
.cid-u7Wrx0LRnx .nav-item:focus,
.cid-u7Wrx0LRnx .nav-link:focus {
  outline: none;
}
.cid-u7Wrx0LRnx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7Wrx0LRnx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7Wrx0LRnx .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7Wrx0LRnx .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7Wrx0LRnx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7Wrx0LRnx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7Wrx0LRnx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7Wrx0LRnx .navbar.opened {
  transition: all 0.3s;
}
.cid-u7Wrx0LRnx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7Wrx0LRnx .navbar .navbar-logo img {
  width: auto;
}
.cid-u7Wrx0LRnx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7Wrx0LRnx .navbar.collapsed {
  justify-content: center;
}
.cid-u7Wrx0LRnx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7Wrx0LRnx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7Wrx0LRnx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7Wrx0LRnx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7Wrx0LRnx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7Wrx0LRnx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7Wrx0LRnx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7Wrx0LRnx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7Wrx0LRnx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7Wrx0LRnx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7Wrx0LRnx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7Wrx0LRnx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7Wrx0LRnx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7Wrx0LRnx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7Wrx0LRnx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7Wrx0LRnx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7Wrx0LRnx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7Wrx0LRnx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7Wrx0LRnx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7Wrx0LRnx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7Wrx0LRnx .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7Wrx0LRnx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7Wrx0LRnx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7Wrx0LRnx .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7Wrx0LRnx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7Wrx0LRnx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7Wrx0LRnx .dropdown-item.active,
.cid-u7Wrx0LRnx .dropdown-item:active {
  background-color: transparent;
}
.cid-u7Wrx0LRnx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7Wrx0LRnx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7Wrx0LRnx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7Wrx0LRnx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7Wrx0LRnx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7Wrx0LRnx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7Wrx0LRnx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7Wrx0LRnx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7Wrx0LRnx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7Wrx0LRnx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7Wrx0LRnx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7Wrx0LRnx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7Wrx0LRnx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7Wrx0LRnx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7Wrx0LRnx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7Wrx0LRnx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7Wrx0LRnx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7Wrx0LRnx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7Wrx0LRnx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7Wrx0LRnx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7Wrx0LRnx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7Wrx0LRnx .navbar {
    height: 70px;
  }
  .cid-u7Wrx0LRnx .navbar.opened {
    height: auto;
  }
  .cid-u7Wrx0LRnx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7Wrx0LRnx .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7Wrx0LRnx .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7Wrx0LRnx a {
  display: inline;
  font-weight: bold;
}
.cid-u7Wrx0LRnx img {
  display: inline;
  padding-right: 10px;
}
.cid-u7Wrx0LRnx .dropdown-toggle:after {
  display: none;
}
.cid-u7Wrx0LRnx .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7Wrx0LRnx .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7Wrx0LRnx .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7Wrx0LRnx .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7Wrx0LRnx .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7Wrx0LRnx .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7Wrx0LRnx .btn {
  display: inline !important;
}
.cid-u7Wrx0LRnx .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7Wrx0LRnx .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7Wrx0LRnx .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7Wrx0LRnx .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7Wrx0LRnx .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7Wrx0LRnx .btn {
  border-radius: 50px;
}
.cid-u7Wrx0LRnx .btn-primary,
.cid-u7Wrx0LRnx .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7Wrx1eJsV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7Wrx1eJsV .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-u7Wrx1eJsV .le3-iconfont {
  font-size: 100px;
  color: #ff4433;
}
.cid-u7Wrx1eJsV .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-u7Wrx1eJsV .le3-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  margin: 0;
}
.cid-u7Wrx1BdwC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7Wrx1BdwC .image-wrapper {
  position: relative;
}
.cid-u7Wrx1BdwC .le3-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-u7Wrx1BdwC .le3-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-u7Wrx1BdwC img {
  width: 100%;
}
.cid-u7Wrx1BdwC .btn-primary,
.cid-u7Wrx1BdwC .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u7Wrx1WXkJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7Wrx1WXkJ .row {
  align-items: center;
  justify-content: space-between;
}
.cid-u7Wrx1WXkJ .btn {
  margin: 0;
  width: 100%;
  border-radius: 12px !important;
}
.cid-u7Wrx1WXkJ .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-u7Wrx1WXkJ .number {
  font-size: 112px;
  color: #ffe3e1;
  font-weight: 600;
  position: absolute;
  top: -22px;
}
.cid-u7Wrx1WXkJ .title {
  font-weight: 600;
  margin-left: 40px;
  position: relative;
}
.cid-u7Wrx1WXkJ .top {
  padding-bottom: 15px;
}
.cid-u7Wrx1WXkJ .subtitle {
  font-weight: 500;
  margin-bottom: 30px;
}
.cid-u7Wrx1WXkJ .bottom {
  padding-bottom: 67px;
}
.cid-u7Wrx1WXkJ .le3-text {
  padding-bottom: 30px;
}
.cid-u7Wrx1WXkJ .wrapper {
  position: relative;
}
.cid-u7Wrx1WXkJ p a {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-u7Wrx1WXkJ p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-u7Wrx1WXkJ a:hover {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%) !important;
}
.cid-u7Wrx1WXkJ a.btn {
  background-image: none;
}
.cid-u7Wrx1WXkJ a.btn:hover {
  background-image: none !important;
}
@media (min-width: 872px) and (max-width: 990px) {
  .cid-u7Wrx1WXkJ .left {
    padding-top: 110px;
  }
}
@media (max-width: 871px) {
  .cid-u7Wrx1WXkJ .left {
    padding-top: 60px;
  }
}
.cid-u7Wrx2iOSj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7Wrx2iOSj .le3-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-u7Wrx2iOSj .le3-section-subtitle {
  color: #000000;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u7Wrx2iOSj .row {
  align-items: center;
  height: 100%;
}
.cid-u7Wrx2CYdz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7Wrx2CYdz .card1 {
  background-image: url("../../../assets/images/mensagemsucesso1091x727-1-1091x727.webp");
  background-size: cover;
  background-position: center;
}
.cid-u7Wrx2CYdz .card2 {
  background-image: url("../../../assets/images/logo2024-rdn-1091x719-preto-1091x719.webp");
  background-size: cover;
  background-position: center;
}
.cid-u7Wrx2CYdz .card3 {
  background-image: url("../../../assets/images/logo2024-rdn-1091x719-branco-1091x719.webp");
  background-size: cover;
  background-position: center;
}
.cid-u7Wrx2CYdz .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-u7Wrx2CYdz .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-u7Wrx2CYdz .le3-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-u7Wrx2CYdz .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-u7Wrx2CYdz .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-u7Wrx2CYdz .btn-secondary,
.cid-u7Wrx2CYdz .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-u7Wrx2CYdz .features-image {
  margin-top: 30px;
}
.cid-u7Wrx2CYdz .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-u7Wrx2CYdz .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-u7Wrx2CYdz .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-u7Wrx2CYdz .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-u7Wrx2CYdz .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-u7Wrx2CYdz .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-u7Wrx2CYdz .btn {
  margin: 0 13px;
  border-radius: 12px !important;
}
.cid-u7Wrx34oar {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u7Wrx34oar .card1 {
  background-image: url("../../../assets/images/logordn-320x320.webp");
  background-size: cover;
  background-position: center;
}
.cid-u7Wrx34oar .card2 {
  background-image: url("../../../assets/images/logordn-600x600.webp");
  background-size: cover;
  background-position: center;
}
.cid-u7Wrx34oar .card3 {
  background-image: url("../../../assets/images/mensagemsucesso540x360-540x360.webp");
  background-size: cover;
  background-position: center;
}
.cid-u7Wrx34oar .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-u7Wrx34oar .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-u7Wrx34oar .le3-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-u7Wrx34oar .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-u7Wrx34oar .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-u7Wrx34oar .btn-secondary,
.cid-u7Wrx34oar .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-u7Wrx34oar .features-image {
  margin-top: 30px;
}
.cid-u7Wrx34oar .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-u7Wrx34oar .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-u7Wrx34oar .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-u7Wrx34oar .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-u7Wrx34oar .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-u7Wrx34oar .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-u7Wrx34oar .btn {
  margin: 0 13px;
  border-radius: 12px !important;
}
#custom-html-3e {
  /* Type valid CSS here */
  /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
  /* This container is needed to position the front and back side */
  /* Do an horizontal flip when you move the mouse over the flip box container */
  /* Position the front and back side */
  /* Style the front side (fallback if image is missing) */
  /* Style the back side */
}
#custom-html-3e divdivdiv {
  padding: 8px 0;
  color: #777;
  text-align: center;
}
#custom-html-3e ppp {
  font-size: 60px;
  color: #777;
}
#custom-html-3e .flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */
}
#custom-html-3e .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
#custom-html-3e .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#custom-html-3e .flip-card-front,
#custom-html-3e .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}
#custom-html-3e .flip-card-front {
  background-color: #bbb;
  color: black;
}
#custom-html-3e .flip-card-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}
.cid-u7Wrx3FVrW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7Wrx3FVrW .card-wrapper {
  background: #e5e5e5;
  padding: 28% 20%;
}
.cid-u7Wrx3FVrW .le3-iconfont {
  display: block;
  font-size: 5rem;
  color: #ff2b09;
  margin-bottom: 18px;
}
.cid-u7Wrx3FVrW .le3-section-title {
  padding: 0;
  padding-bottom: 85px;
  margin: 0;
}
@media (max-width: 690px) {
  .cid-u7Wrx3FVrW .item {
    padding-bottom: 25px;
  }
}
.cid-u7Wrx3FVrW .title {
  margin-bottom: 10px;
  font-weight: 600;
}
.cid-u7Wrx3FVrW .card-title,
.cid-u7Wrx3FVrW .iconfont-wrapper {
  color: #ff4433;
}
.cid-u7Wrx3FVrW .card-text {
  color: #ff4433;
}
@media (max-width: 990px) {
  .cid-u7Wrx3FVrW .top {
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .cid-u7Wrx3FVrW .top1 {
    padding-top: 20px;
  }
}
.cid-u7Wrx4dkkF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7Wrx4dkkF .line {
  width: 100%;
  background-color: #e5e5e5;
  height: 1px;
  padding: 0;
}
.cid-u7Wrx4dkkF .lin {
  margin-bottom: 0;
}
.cid-u7Wrx4dkkF .date {
  color: #000000;
  font-weight: 600;
}
.cid-u7Wrx4dkkF .inline {
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}
.cid-u7Wrx4dkkF .margin {
  padding-top: 3%;
  padding-bottom: 3%;
  align-items: center;
}
.cid-u7Wrx4dkkF .le3-section-title {
  color: #000000;
  font-weight: 500;
  margin-bottom: 30px;
}
.cid-u7Wrx4dkkF .text {
  padding-bottom: 30px;
  color: #000000;
  font-weight: 600;
}
.cid-u7Wrx4dkkF .link {
  color: #ff4433;
  display: flex;
}
@media (max-width: 670px) {
  .cid-u7Wrx4dkkF .inline {
    flex-direction: column;
    align-items: flex-start;
    margin-left: -50px;
  }
  .cid-u7Wrx4dkkF .margin {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}
.cid-u7Wrx4dkkF .title {
  color: #000000;
  font-weight: 500;
  width: 60%;
  margin-right: 30px;
  text-align: left;
}
@media (max-width: 640px) {
  .cid-u7Wrx4dkkF .inline {
    margin-left: -10px;
  }
  .cid-u7Wrx4dkkF .date {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}
.cid-u7Wrx4dkkF svg {
  display: block;
  position: relative;
  width: 2em;
  height: auto;
  transform: translateX(-1.5em);
  transition: fill 0.5s ease, transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  fill: currentColor;
  margin-left: 13px;
}
.cid-u7Wrx4dkkF .grve-arrow-line {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7Wrx4dkkF .margin:hover svg {
  transform: translateX(0);
}
.cid-u7Wrx4dkkF .margin:hover .grve-arrow-line {
  transform: scaleX(1);
  transform-origin: right center;
}
@media (max-width: 690px) {
  .cid-u7Wrx4dkkF .link {
    margin-top: 7px;
  }
}
.cid-u7Wrx4HnqS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7Wrx4HnqS .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7Wrx4HnqS .btn {
  border-radius: 12px !important;
}
.cid-u7Wrx5aSdH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u7Wrx5aSdH form .btn {
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 21px;
  border-radius: 12px !important;
}
.cid-u7Wrx5aSdH .le3-text {
  padding: 0px 30% 0;
}
.cid-u7Wrx5aSdH .top {
  width: 100%;
  margin-top: 60px;
  padding: 0 17%;
}
.cid-u7Wrx5aSdH .row {
  align-items: center;
}
.cid-u7Wrx5aSdH h4 {
  width: 100%;
}
.cid-u7Wrx5aSdH .card-heading {
  color: #ffffff;
  text-align: center;
  padding: 0 30%;
  margin-bottom: 15px;
  font-weight: 600;
}
.cid-u7Wrx5aSdH .p,
.cid-u7Wrx5aSdH .le3-form {
  text-align: center;
  color: #ffffff;
}
.cid-u7Wrx5aSdH .button {
  position: absolute;
  right: 18px;
  top: 18px;
}
.cid-u7Wrx5aSdH .form-control {
  background-color: #ffffff;
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  padding: 16px 0px;
  height: 50px;
}
.cid-u7Wrx5aSdH .form-control:hover {
  box-shadow: none;
}
.cid-u7Wrx5aSdH .form-group {
  margin-bottom: 0;
  position: relative;
  background-color: #ffffff;
  padding: 21px 18px;
  border-radius: 3px;
}
@media (max-width: 770px) {
  .cid-u7Wrx5aSdH .button {
    position: initial;
  }
  .cid-u7Wrx5aSdH .form-control {
    padding: 16px 2px;
  }
  .cid-u7Wrx5aSdH .card-heading {
    padding: 0 5%;
  }
  .cid-u7Wrx5aSdH .top {
    padding: 0 5%;
  }
}
@media (max-width: 870px) {
  .cid-u7Wrx5aSdH .card-heading {
    padding: 0 5%;
  }
  .cid-u7Wrx5aSdH .le3-text {
    padding: 0 5%;
  }
}
.cid-u7Wrx5aSdH .col-auto {
  padding: 0;
}
.cid-u7Wrx5aSdH .btn {
  border-radius: 50px;
}
.cid-u7Wrx5FtM7 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7Wrx5FtM7 .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7Wrx5FtM7 .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7Wrx5FtM7 .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7Wrx5FtM7 .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7Wrx5FtM7 .navbar-nav {
    flex-direction: column;
  }
  .cid-u7Wrx5FtM7 .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7Wrx5FtM7 a {
  transition: color .3s;
}
.cid-u7Wrx5FtM7 a.text-danger:hover,
.cid-u7Wrx5FtM7 a.text-danger:focus,
.cid-u7Wrx5FtM7 a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-u7XATo1nIF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u7XATo1nIF nav.navbar {
  position: fixed;
}
.cid-u7XATo1nIF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7XATo1nIF .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u7XATo1nIF .dropdown-item:hover,
.cid-u7XATo1nIF .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u7XATo1nIF .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u7XATo1nIF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7XATo1nIF .nav-link {
  position: relative;
  padding: 0;
}
.cid-u7XATo1nIF .container {
  display: flex;
  margin: auto;
}
.cid-u7XATo1nIF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7XATo1nIF .dropdown-menu,
.cid-u7XATo1nIF .navbar.opened {
  background: #272727 !important;
}
.cid-u7XATo1nIF .nav-item:focus,
.cid-u7XATo1nIF .nav-link:focus {
  outline: none;
}
.cid-u7XATo1nIF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7XATo1nIF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7XATo1nIF .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7XATo1nIF .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7XATo1nIF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7XATo1nIF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7XATo1nIF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u7XATo1nIF .navbar.opened {
  transition: all 0.3s;
}
.cid-u7XATo1nIF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7XATo1nIF .navbar .navbar-logo img {
  width: auto;
}
.cid-u7XATo1nIF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7XATo1nIF .navbar.collapsed {
  justify-content: center;
}
.cid-u7XATo1nIF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7XATo1nIF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7XATo1nIF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u7XATo1nIF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7XATo1nIF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7XATo1nIF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7XATo1nIF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7XATo1nIF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7XATo1nIF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7XATo1nIF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7XATo1nIF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7XATo1nIF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7XATo1nIF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7XATo1nIF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7XATo1nIF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7XATo1nIF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7XATo1nIF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7XATo1nIF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7XATo1nIF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7XATo1nIF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7XATo1nIF .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7XATo1nIF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7XATo1nIF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7XATo1nIF .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7XATo1nIF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7XATo1nIF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7XATo1nIF .dropdown-item.active,
.cid-u7XATo1nIF .dropdown-item:active {
  background-color: transparent;
}
.cid-u7XATo1nIF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7XATo1nIF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7XATo1nIF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7XATo1nIF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u7XATo1nIF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7XATo1nIF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7XATo1nIF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7XATo1nIF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7XATo1nIF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7XATo1nIF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u7XATo1nIF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7XATo1nIF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7XATo1nIF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7XATo1nIF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7XATo1nIF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7XATo1nIF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7XATo1nIF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7XATo1nIF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7XATo1nIF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7XATo1nIF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7XATo1nIF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7XATo1nIF .navbar {
    height: 70px;
  }
  .cid-u7XATo1nIF .navbar.opened {
    height: auto;
  }
  .cid-u7XATo1nIF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7XATo1nIF .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u7XATo1nIF .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u7XATo1nIF a {
  display: inline;
  font-weight: bold;
}
.cid-u7XATo1nIF img {
  display: inline;
  padding-right: 10px;
}
.cid-u7XATo1nIF .dropdown-toggle:after {
  display: none;
}
.cid-u7XATo1nIF .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u7XATo1nIF .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u7XATo1nIF .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u7XATo1nIF .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u7XATo1nIF .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u7XATo1nIF .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u7XATo1nIF .btn {
  display: inline !important;
}
.cid-u7XATo1nIF .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u7XATo1nIF .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u7XATo1nIF .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u7XATo1nIF .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u7XATo1nIF .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u7XATo1nIF .btn {
  border-radius: 50px;
}
.cid-u7XATo1nIF .btn-primary,
.cid-u7XATo1nIF .btn-primary:active {
  border-radius: 12px !important;
}
.cid-uJYqGwRl4F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uJYqGwRl4F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uJYqGwRl4F .row {
  flex-direction: row-reverse;
}
.cid-uJYqGwRl4F img {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-uJYqGwRl4F .top {
    padding-top: 20px;
  }
}
.cid-u7XATopasz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u7XATopasz .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7XATopasz .btn {
  border-radius: 12px !important;
}
.cid-u7XAToI5RC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u7XAToI5RC form .btn {
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 21px;
  border-radius: 12px !important;
}
.cid-u7XAToI5RC .le3-text {
  padding: 0px 30% 0;
}
.cid-u7XAToI5RC .top {
  width: 100%;
  margin-top: 60px;
  padding: 0 17%;
}
.cid-u7XAToI5RC .row {
  align-items: center;
}
.cid-u7XAToI5RC h4 {
  width: 100%;
}
.cid-u7XAToI5RC .card-heading {
  color: #ffffff;
  text-align: center;
  padding: 0 30%;
  margin-bottom: 15px;
  font-weight: 600;
}
.cid-u7XAToI5RC .p,
.cid-u7XAToI5RC .le3-form {
  text-align: center;
  color: #ffffff;
}
.cid-u7XAToI5RC .button {
  position: absolute;
  right: 18px;
  top: 18px;
}
.cid-u7XAToI5RC .form-control {
  background-color: #ffffff;
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  padding: 16px 0px;
  height: 50px;
}
.cid-u7XAToI5RC .form-control:hover {
  box-shadow: none;
}
.cid-u7XAToI5RC .form-group {
  margin-bottom: 0;
  position: relative;
  background-color: #ffffff;
  padding: 21px 18px;
  border-radius: 3px;
}
@media (max-width: 770px) {
  .cid-u7XAToI5RC .button {
    position: initial;
  }
  .cid-u7XAToI5RC .form-control {
    padding: 16px 2px;
  }
  .cid-u7XAToI5RC .card-heading {
    padding: 0 5%;
  }
  .cid-u7XAToI5RC .top {
    padding: 0 5%;
  }
}
@media (max-width: 870px) {
  .cid-u7XAToI5RC .card-heading {
    padding: 0 5%;
  }
  .cid-u7XAToI5RC .le3-text {
    padding: 0 5%;
  }
}
.cid-u7XAToI5RC .col-auto {
  padding: 0;
}
.cid-u7XAToI5RC .btn {
  border-radius: 50px;
}
.cid-u7XAToZcfr {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u7XAToZcfr .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u7XAToZcfr .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u7XAToZcfr .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u7XAToZcfr .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u7XAToZcfr .navbar-nav {
    flex-direction: column;
  }
  .cid-u7XAToZcfr .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u7XAToZcfr a {
  transition: color .3s;
}
.cid-u7XAToZcfr a.text-danger:hover,
.cid-u7XAToZcfr a.text-danger:focus,
.cid-u7XAToZcfr a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-u87zaubGv4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u87zaubGv4 nav.navbar {
  position: fixed;
}
.cid-u87zaubGv4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u87zaubGv4 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u87zaubGv4 .dropdown-item:hover,
.cid-u87zaubGv4 .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u87zaubGv4 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u87zaubGv4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u87zaubGv4 .nav-link {
  position: relative;
  padding: 0;
}
.cid-u87zaubGv4 .container {
  display: flex;
  margin: auto;
}
.cid-u87zaubGv4 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u87zaubGv4 .dropdown-menu,
.cid-u87zaubGv4 .navbar.opened {
  background: #272727 !important;
}
.cid-u87zaubGv4 .nav-item:focus,
.cid-u87zaubGv4 .nav-link:focus {
  outline: none;
}
.cid-u87zaubGv4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u87zaubGv4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u87zaubGv4 .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u87zaubGv4 .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u87zaubGv4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u87zaubGv4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u87zaubGv4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u87zaubGv4 .navbar.opened {
  transition: all 0.3s;
}
.cid-u87zaubGv4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u87zaubGv4 .navbar .navbar-logo img {
  width: auto;
}
.cid-u87zaubGv4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u87zaubGv4 .navbar.collapsed {
  justify-content: center;
}
.cid-u87zaubGv4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u87zaubGv4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u87zaubGv4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u87zaubGv4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u87zaubGv4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u87zaubGv4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u87zaubGv4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u87zaubGv4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u87zaubGv4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u87zaubGv4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u87zaubGv4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u87zaubGv4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u87zaubGv4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u87zaubGv4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u87zaubGv4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u87zaubGv4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u87zaubGv4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u87zaubGv4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u87zaubGv4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u87zaubGv4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u87zaubGv4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u87zaubGv4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u87zaubGv4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u87zaubGv4 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u87zaubGv4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u87zaubGv4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u87zaubGv4 .dropdown-item.active,
.cid-u87zaubGv4 .dropdown-item:active {
  background-color: transparent;
}
.cid-u87zaubGv4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u87zaubGv4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u87zaubGv4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u87zaubGv4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u87zaubGv4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u87zaubGv4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u87zaubGv4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u87zaubGv4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u87zaubGv4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u87zaubGv4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u87zaubGv4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u87zaubGv4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u87zaubGv4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u87zaubGv4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u87zaubGv4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u87zaubGv4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u87zaubGv4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u87zaubGv4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u87zaubGv4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u87zaubGv4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u87zaubGv4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u87zaubGv4 .navbar {
    height: 70px;
  }
  .cid-u87zaubGv4 .navbar.opened {
    height: auto;
  }
  .cid-u87zaubGv4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u87zaubGv4 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u87zaubGv4 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u87zaubGv4 a {
  display: inline;
  font-weight: bold;
}
.cid-u87zaubGv4 img {
  display: inline;
  padding-right: 10px;
}
.cid-u87zaubGv4 .dropdown-toggle:after {
  display: none;
}
.cid-u87zaubGv4 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u87zaubGv4 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u87zaubGv4 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u87zaubGv4 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u87zaubGv4 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u87zaubGv4 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u87zaubGv4 .btn {
  display: inline !important;
}
.cid-u87zaubGv4 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u87zaubGv4 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u87zaubGv4 .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u87zaubGv4 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u87zaubGv4 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u87zaubGv4 .btn {
  border-radius: 50px;
}
.cid-u87zaubGv4 .btn-primary,
.cid-u87zaubGv4 .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u87ztaHH40 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u87ztaHH40 .right {
  display: flex;
  flex-direction: column;
}
.cid-u87ztaHH40 .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
}
.cid-u87ztaHH40 .p {
  padding-bottom: 30px;
  color: #272727;
}
.cid-u87ztaHH40 .last-p {
  padding-bottom: 0;
}
.cid-u87ztaHH40 .row {
  justify-content: center;
}
.cid-u87zauxLW3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u87zauxLW3 .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u87zauxLW3 .btn {
  border-radius: 12px !important;
}
.cid-u88Tmffg1R {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u88Tmffg1R .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u88Tmffg1R .btn {
  border-radius: 12px !important;
}
.cid-u88Tmffg1R H4 {
  color: #ffffff;
}
.cid-u87zav6TUx {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u87zav6TUx .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u87zav6TUx .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u87zav6TUx .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u87zav6TUx .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u87zav6TUx .navbar-nav {
    flex-direction: column;
  }
  .cid-u87zav6TUx .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u87zav6TUx a {
  transition: color .3s;
}
.cid-u87zav6TUx a.text-danger:hover,
.cid-u87zav6TUx a.text-danger:focus,
.cid-u87zav6TUx a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4p {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4p .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4p a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4p .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4p .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4p .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u889EMMk8d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u889EMMk8d nav.navbar {
  position: fixed;
}
.cid-u889EMMk8d .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u889EMMk8d .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u889EMMk8d .dropdown-item:hover,
.cid-u889EMMk8d .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u889EMMk8d .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u889EMMk8d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u889EMMk8d .nav-link {
  position: relative;
  padding: 0;
}
.cid-u889EMMk8d .container {
  display: flex;
  margin: auto;
}
.cid-u889EMMk8d .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u889EMMk8d .dropdown-menu,
.cid-u889EMMk8d .navbar.opened {
  background: #272727 !important;
}
.cid-u889EMMk8d .nav-item:focus,
.cid-u889EMMk8d .nav-link:focus {
  outline: none;
}
.cid-u889EMMk8d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u889EMMk8d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u889EMMk8d .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u889EMMk8d .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u889EMMk8d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u889EMMk8d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u889EMMk8d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u889EMMk8d .navbar.opened {
  transition: all 0.3s;
}
.cid-u889EMMk8d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u889EMMk8d .navbar .navbar-logo img {
  width: auto;
}
.cid-u889EMMk8d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u889EMMk8d .navbar.collapsed {
  justify-content: center;
}
.cid-u889EMMk8d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u889EMMk8d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u889EMMk8d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u889EMMk8d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u889EMMk8d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u889EMMk8d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u889EMMk8d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u889EMMk8d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u889EMMk8d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u889EMMk8d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u889EMMk8d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u889EMMk8d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u889EMMk8d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u889EMMk8d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u889EMMk8d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u889EMMk8d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u889EMMk8d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u889EMMk8d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u889EMMk8d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u889EMMk8d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u889EMMk8d .navbar.navbar-short {
  min-height: 60px;
}
.cid-u889EMMk8d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u889EMMk8d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u889EMMk8d .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u889EMMk8d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u889EMMk8d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u889EMMk8d .dropdown-item.active,
.cid-u889EMMk8d .dropdown-item:active {
  background-color: transparent;
}
.cid-u889EMMk8d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u889EMMk8d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u889EMMk8d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u889EMMk8d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u889EMMk8d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u889EMMk8d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u889EMMk8d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u889EMMk8d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u889EMMk8d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u889EMMk8d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u889EMMk8d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u889EMMk8d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u889EMMk8d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u889EMMk8d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u889EMMk8d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u889EMMk8d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u889EMMk8d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u889EMMk8d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u889EMMk8d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u889EMMk8d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u889EMMk8d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u889EMMk8d .navbar {
    height: 70px;
  }
  .cid-u889EMMk8d .navbar.opened {
    height: auto;
  }
  .cid-u889EMMk8d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u889EMMk8d .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u889EMMk8d .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u889EMMk8d a {
  display: inline;
  font-weight: bold;
}
.cid-u889EMMk8d img {
  display: inline;
  padding-right: 10px;
}
.cid-u889EMMk8d .dropdown-toggle:after {
  display: none;
}
.cid-u889EMMk8d .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u889EMMk8d .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u889EMMk8d .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u889EMMk8d .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u889EMMk8d .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u889EMMk8d .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u889EMMk8d .btn {
  display: inline !important;
}
.cid-u889EMMk8d .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u889EMMk8d .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u889EMMk8d .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u889EMMk8d .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u889EMMk8d .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u889EMMk8d .btn {
  border-radius: 50px;
}
.cid-u889EMMk8d .btn-primary,
.cid-u889EMMk8d .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u889ENdJij {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u889ENdJij .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-u889ENdJij .le3-iconfont {
  font-size: 100px;
  color: #ff4433;
}
.cid-u889ENdJij .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-u889ENdJij .le3-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  margin: 0;
}
.cid-u889ENAQ5u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u889ENAQ5u .image-wrapper {
  position: relative;
}
.cid-u889ENAQ5u .le3-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-u889ENAQ5u .le3-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-u889ENAQ5u img {
  width: 100%;
}
.cid-u889ENAQ5u .btn-primary,
.cid-u889ENAQ5u .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u889ENUu5Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u889ENUu5Y .row {
  align-items: center;
  justify-content: space-between;
}
.cid-u889ENUu5Y .btn {
  margin: 0;
  width: 100%;
  border-radius: 12px !important;
}
.cid-u889ENUu5Y .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-u889ENUu5Y .number {
  font-size: 112px;
  color: #ffe3e1;
  font-weight: 600;
  position: absolute;
  top: -22px;
}
.cid-u889ENUu5Y .title {
  font-weight: 600;
  margin-left: 40px;
  position: relative;
}
.cid-u889ENUu5Y .top {
  padding-bottom: 15px;
}
.cid-u889ENUu5Y .subtitle {
  font-weight: 500;
  margin-bottom: 30px;
}
.cid-u889ENUu5Y .bottom {
  padding-bottom: 67px;
}
.cid-u889ENUu5Y .le3-text {
  padding-bottom: 30px;
}
.cid-u889ENUu5Y .wrapper {
  position: relative;
}
.cid-u889ENUu5Y p a {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-u889ENUu5Y p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% .25em;
}
.cid-u889ENUu5Y a:hover {
  background-image: linear-gradient(#ff4433 0%, #ff4433 100%) !important;
}
.cid-u889ENUu5Y a.btn {
  background-image: none;
}
.cid-u889ENUu5Y a.btn:hover {
  background-image: none !important;
}
@media (min-width: 872px) and (max-width: 990px) {
  .cid-u889ENUu5Y .left {
    padding-top: 110px;
  }
}
@media (max-width: 871px) {
  .cid-u889ENUu5Y .left {
    padding-top: 60px;
  }
}
.cid-u889EOftUt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u889EOftUt .le3-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-u889EOftUt .le3-section-subtitle {
  color: #000000;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u889EOftUt .row {
  align-items: center;
  height: 100%;
}
.cid-u889EOA0CZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u889EOA0CZ .card1 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
}
.cid-u889EOA0CZ .card2 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
}
.cid-u889EOA0CZ .card3 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
}
.cid-u889EOA0CZ .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-u889EOA0CZ .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-u889EOA0CZ .le3-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-u889EOA0CZ .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-u889EOA0CZ .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-u889EOA0CZ .btn-secondary,
.cid-u889EOA0CZ .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-u889EOA0CZ .features-image {
  margin-top: 30px;
}
.cid-u889EOA0CZ .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-u889EOA0CZ .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-u889EOA0CZ .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-u889EOA0CZ .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-u889EOA0CZ .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-u889EOA0CZ .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-u889EOA0CZ .btn {
  margin: 0 13px;
  border-radius: 12px !important;
}
.cid-u889EP37xO {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u889EP37xO .card1 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
}
.cid-u889EP37xO .card2 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
}
.cid-u889EP37xO .card3 {
  background-image: url("../../../assets/images/fractais-48-2000x2000.webp");
  background-size: cover;
  background-position: center;
}
.cid-u889EP37xO .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-u889EP37xO .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-u889EP37xO .le3-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-u889EP37xO .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-u889EP37xO .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-u889EP37xO .btn-secondary,
.cid-u889EP37xO .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-u889EP37xO .features-image {
  margin-top: 30px;
}
.cid-u889EP37xO .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-u889EP37xO .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-u889EP37xO .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-u889EP37xO .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-u889EP37xO .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-u889EP37xO .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-u889EP37xO .btn {
  margin: 0 13px;
  border-radius: 12px !important;
}
.cid-u889EPvSk9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u889EPvSk9 .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u889EPvSk9 .btn {
  border-radius: 12px !important;
}
.cid-u889EPUoUR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u889EPUoUR form .btn {
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 21px;
  border-radius: 12px !important;
}
.cid-u889EPUoUR .le3-text {
  padding: 0px 30% 0;
}
.cid-u889EPUoUR .top {
  width: 100%;
  margin-top: 60px;
  padding: 0 17%;
}
.cid-u889EPUoUR .row {
  align-items: center;
}
.cid-u889EPUoUR h4 {
  width: 100%;
}
.cid-u889EPUoUR .card-heading {
  color: #ffffff;
  text-align: center;
  padding: 0 30%;
  margin-bottom: 15px;
  font-weight: 600;
}
.cid-u889EPUoUR .p,
.cid-u889EPUoUR .le3-form {
  text-align: center;
  color: #ffffff;
}
.cid-u889EPUoUR .button {
  position: absolute;
  right: 18px;
  top: 18px;
}
.cid-u889EPUoUR .form-control {
  background-color: #ffffff;
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  padding: 16px 0px;
  height: 50px;
}
.cid-u889EPUoUR .form-control:hover {
  box-shadow: none;
}
.cid-u889EPUoUR .form-group {
  margin-bottom: 0;
  position: relative;
  background-color: #ffffff;
  padding: 21px 18px;
  border-radius: 3px;
}
@media (max-width: 770px) {
  .cid-u889EPUoUR .button {
    position: initial;
  }
  .cid-u889EPUoUR .form-control {
    padding: 16px 2px;
  }
  .cid-u889EPUoUR .card-heading {
    padding: 0 5%;
  }
  .cid-u889EPUoUR .top {
    padding: 0 5%;
  }
}
@media (max-width: 870px) {
  .cid-u889EPUoUR .card-heading {
    padding: 0 5%;
  }
  .cid-u889EPUoUR .le3-text {
    padding: 0 5%;
  }
}
.cid-u889EPUoUR .col-auto {
  padding: 0;
}
.cid-u889EPUoUR .btn {
  border-radius: 50px;
}
.cid-u889EQjq91 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u889EQjq91 .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u889EQjq91 .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u889EQjq91 .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u889EQjq91 .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u889EQjq91 .navbar-nav {
    flex-direction: column;
  }
  .cid-u889EQjq91 .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u889EQjq91 a {
  transition: color .3s;
}
.cid-u889EQjq91 a.text-danger:hover,
.cid-u889EQjq91 a.text-danger:focus,
.cid-u889EQjq91 a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-4g {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-4g .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-4g a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-4g .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-4g .pulse-button {
  width: 45px;
  /*65 */
  height: 45px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-4g .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-u894E6FsWN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u894E6FsWN nav.navbar {
  position: fixed;
}
.cid-u894E6FsWN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u894E6FsWN .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u894E6FsWN .dropdown-item:hover,
.cid-u894E6FsWN .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u894E6FsWN .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u894E6FsWN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u894E6FsWN .nav-link {
  position: relative;
  padding: 0;
}
.cid-u894E6FsWN .container {
  display: flex;
  margin: auto;
}
.cid-u894E6FsWN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u894E6FsWN .dropdown-menu,
.cid-u894E6FsWN .navbar.opened {
  background: #272727 !important;
}
.cid-u894E6FsWN .nav-item:focus,
.cid-u894E6FsWN .nav-link:focus {
  outline: none;
}
.cid-u894E6FsWN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u894E6FsWN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u894E6FsWN .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u894E6FsWN .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u894E6FsWN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u894E6FsWN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u894E6FsWN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-u894E6FsWN .navbar.opened {
  transition: all 0.3s;
}
.cid-u894E6FsWN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u894E6FsWN .navbar .navbar-logo img {
  width: auto;
}
.cid-u894E6FsWN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u894E6FsWN .navbar.collapsed {
  justify-content: center;
}
.cid-u894E6FsWN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u894E6FsWN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u894E6FsWN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u894E6FsWN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u894E6FsWN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u894E6FsWN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u894E6FsWN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u894E6FsWN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u894E6FsWN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u894E6FsWN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u894E6FsWN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u894E6FsWN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u894E6FsWN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u894E6FsWN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u894E6FsWN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u894E6FsWN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u894E6FsWN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u894E6FsWN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u894E6FsWN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u894E6FsWN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u894E6FsWN .navbar.navbar-short {
  min-height: 60px;
}
.cid-u894E6FsWN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u894E6FsWN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u894E6FsWN .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u894E6FsWN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u894E6FsWN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u894E6FsWN .dropdown-item.active,
.cid-u894E6FsWN .dropdown-item:active {
  background-color: transparent;
}
.cid-u894E6FsWN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u894E6FsWN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u894E6FsWN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u894E6FsWN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-u894E6FsWN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u894E6FsWN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u894E6FsWN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u894E6FsWN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u894E6FsWN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u894E6FsWN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u894E6FsWN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u894E6FsWN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u894E6FsWN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u894E6FsWN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u894E6FsWN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u894E6FsWN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u894E6FsWN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u894E6FsWN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u894E6FsWN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u894E6FsWN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u894E6FsWN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u894E6FsWN .navbar {
    height: 70px;
  }
  .cid-u894E6FsWN .navbar.opened {
    height: auto;
  }
  .cid-u894E6FsWN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u894E6FsWN .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u894E6FsWN .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u894E6FsWN a {
  display: inline;
  font-weight: bold;
}
.cid-u894E6FsWN img {
  display: inline;
  padding-right: 10px;
}
.cid-u894E6FsWN .dropdown-toggle:after {
  display: none;
}
.cid-u894E6FsWN .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u894E6FsWN .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u894E6FsWN .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u894E6FsWN .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u894E6FsWN .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u894E6FsWN .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u894E6FsWN .btn {
  display: inline !important;
}
.cid-u894E6FsWN .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u894E6FsWN .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u894E6FsWN .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-u894E6FsWN .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u894E6FsWN .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u894E6FsWN .btn {
  border-radius: 50px;
}
.cid-u894E6FsWN .btn-primary,
.cid-u894E6FsWN .btn-primary:active {
  border-radius: 12px !important;
}
.cid-u894Q7qrzR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mensagemsucesso-br-540x360.webp");
}
.cid-u894Q7qrzR .le3-section-title {
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.cid-u894Q7qrzR .le3-section-subtitle {
  font-weight: 600;
  color: #ffffaa;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}
.cid-u894Q7qrzR .le3-fullscreen {
  display: flex;
  width: 100%;
  padding-bottom: 200px;
}
@media (min-width: 751px) {
  .cid-u894Q7qrzR .wrapper {
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    width: 100%;
    padding-bottom: 200px;
  }
  .cid-u894Q7qrzR .wrapper .imgSuccess {
    width: 400px !important;
    height: 500px !important;
  }
}
@media (max-width: 750px) {
  .cid-u894Q7qrzR .wrapper {
    min-height: 300px;
    display: flex;
    align-items: center;
  }
  .cid-u894Q7qrzR .wrapper .imgSuccess {
    width: 400px !important;
    height: 500px !important;
  }
}
.cid-u894Q7qrzR .btnVolte {
  background-color: transparent;
  height: 50px;
  width: 150px;
  position: fixed;
  z-index: 999;
  right: auto;
  bottom: 15%;
  border-radius: 12px !important;
  box-shadow: 2px 10px 10px 2px rgba(244, 237, 237, 0.2);
}
.cid-u894E7mRn4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u894E7mRn4 .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u894E7mRn4 .btn {
  border-radius: 12px !important;
}
.cid-u894E7mRn4 H4 {
  color: #ffffff;
}
.cid-u894E7GivH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u894E7GivH .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-u894E7GivH .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-u894E7GivH .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-u894E7GivH .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-u894E7GivH .navbar-nav {
    flex-direction: column;
  }
  .cid-u894E7GivH .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-u894E7GivH a {
  transition: color .3s;
}
.cid-u894E7GivH a.text-danger:hover,
.cid-u894E7GivH a.text-danger:focus,
.cid-u894E7GivH a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-54 {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-54 .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-54 a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-54 .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-54 .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-54 .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
.cid-uJYo23aO1l {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJYo23aO1l nav.navbar {
  position: fixed;
}
.cid-uJYo23aO1l .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJYo23aO1l .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uJYo23aO1l .dropdown-item:hover,
.cid-uJYo23aO1l .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-uJYo23aO1l .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uJYo23aO1l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJYo23aO1l .nav-link {
  position: relative;
  padding: 0;
}
.cid-uJYo23aO1l .container {
  display: flex;
  margin: auto;
}
.cid-uJYo23aO1l .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJYo23aO1l .dropdown-menu,
.cid-uJYo23aO1l .navbar.opened {
  background: #272727 !important;
}
.cid-uJYo23aO1l .nav-item:focus,
.cid-uJYo23aO1l .nav-link:focus {
  outline: none;
}
.cid-uJYo23aO1l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJYo23aO1l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJYo23aO1l .dropdown .dropdown-menu .dropdown-item .le3-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJYo23aO1l .dropdown .dropdown-menu .dropdown-item .le3-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJYo23aO1l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJYo23aO1l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJYo23aO1l .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #272727;
}
.cid-uJYo23aO1l .navbar.opened {
  transition: all 0.3s;
}
.cid-uJYo23aO1l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJYo23aO1l .navbar .navbar-logo img {
  width: auto;
}
.cid-uJYo23aO1l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJYo23aO1l .navbar.collapsed {
  justify-content: center;
}
.cid-uJYo23aO1l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJYo23aO1l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJYo23aO1l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uJYo23aO1l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJYo23aO1l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJYo23aO1l .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uJYo23aO1l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJYo23aO1l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJYo23aO1l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJYo23aO1l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJYo23aO1l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJYo23aO1l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJYo23aO1l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJYo23aO1l .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uJYo23aO1l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJYo23aO1l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJYo23aO1l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJYo23aO1l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJYo23aO1l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJYo23aO1l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uJYo23aO1l .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJYo23aO1l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJYo23aO1l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJYo23aO1l .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJYo23aO1l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJYo23aO1l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJYo23aO1l .dropdown-item.active,
.cid-uJYo23aO1l .dropdown-item:active {
  background-color: transparent;
}
.cid-uJYo23aO1l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJYo23aO1l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJYo23aO1l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJYo23aO1l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-uJYo23aO1l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJYo23aO1l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJYo23aO1l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJYo23aO1l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJYo23aO1l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJYo23aO1l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJYo23aO1l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJYo23aO1l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJYo23aO1l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJYo23aO1l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJYo23aO1l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJYo23aO1l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJYo23aO1l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJYo23aO1l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJYo23aO1l .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJYo23aO1l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJYo23aO1l .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJYo23aO1l .navbar {
    height: 70px;
  }
  .cid-uJYo23aO1l .navbar.opened {
    height: auto;
  }
  .cid-uJYo23aO1l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJYo23aO1l .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uJYo23aO1l .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uJYo23aO1l a {
  display: inline;
  font-weight: bold;
}
.cid-uJYo23aO1l img {
  display: inline;
  padding-right: 10px;
}
.cid-uJYo23aO1l .dropdown-toggle:after {
  display: none;
}
.cid-uJYo23aO1l .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uJYo23aO1l .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-uJYo23aO1l .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uJYo23aO1l .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uJYo23aO1l .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uJYo23aO1l .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uJYo23aO1l .btn {
  display: inline !important;
}
.cid-uJYo23aO1l .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uJYo23aO1l .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uJYo23aO1l .le3-buttons {
  margin: 20px -6px 20px;
}
.cid-uJYo23aO1l .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uJYo23aO1l .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uJYo23aO1l .btn {
  border-radius: 50px;
}
.cid-uJYo23aO1l .btn-primary,
.cid-uJYo23aO1l .btn-primary:active {
  border-radius: 12px !important;
}
.cid-uJYoy1t6EZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uJYoy1t6EZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uJYoy1t6EZ .row {
  flex-direction: row-reverse;
}
.cid-uJYoy1t6EZ img {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-uJYoy1t6EZ .top {
    padding-top: 20px;
  }
}
.cid-uLPCtvsdIA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uLPCtvsdIA .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uLPCtvsdIA .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uLPCtvsdIA .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uLPCtvsdIA P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-uLPCtvsdIA img {
  margin-top: 15px;
}
@media (max-width: 990px) {
  .cid-uLPCtvsdIA .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-uLPCtvsdIA .top,
  .cid-uLPCtvsdIA .top-2 {
    margin-top: 0;
  }
}
.cid-uJYy9Bb1jh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJYy9Bb1jh .right {
  display: flex;
  flex-direction: column;
}
.cid-uJYy9Bb1jh .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
}
.cid-uJYy9Bb1jh .p {
  padding-bottom: 30px;
  color: #272727;
}
.cid-uJYy9Bb1jh .last-p {
  padding-bottom: 0;
}
.cid-uJYy9Bb1jh .row {
  justify-content: center;
}
.cid-uJYo241dMs {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uJYo241dMs .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uJYo241dMs .btn {
  border-radius: 12px !important;
}
.cid-uJYo24pkMm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-uJYo24pkMm .le3-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uJYo24pkMm .btn {
  border-radius: 12px !important;
}
.cid-uJYo24pkMm H4 {
  color: #ffffff;
}
.cid-uJYo24PBXZ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uJYo24PBXZ .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-uJYo24PBXZ .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-uJYo24PBXZ .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-uJYo24PBXZ .le3-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-uJYo24PBXZ .navbar-nav {
    flex-direction: column;
  }
  .cid-uJYo24PBXZ .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-uJYo24PBXZ a {
  transition: color .3s;
}
.cid-uJYo24PBXZ a.text-danger:hover,
.cid-uJYo24PBXZ a.text-danger:focus,
.cid-uJYo24PBXZ a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
#custom-html-5c {
  /*
<link rel="stylesheet" href="../../../assets/whatsapp/whatsAPP-Redondinho.css">
*/
  /** Para forcar a cor do link:  **/
}
#custom-html-5c .whatsapphidden {
  position: fixed;
  z-index: 999;
  /*
    background: #20B038;
    */
  width: 80px;
  /* 150  */
  height: 80px;
  /*  65 */
  right: 10px;
  /* 0*/
  bottom: 15%;
  /*
    padding: 9px 18px 9px 9px;
    border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    -webkit-border-radius: 4px 0px 0px 4px;
    text-align: right;
    */
  /*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    */
}
#custom-html-5c a {
  /*
    color: #000000  !important;
	text-decoration: none
    */
}
#custom-html-5c .logoWhats {
  fill: #25D366;
  width: 50px;
}
#custom-html-5c .pulse-button {
  width: 55px;
  /*65 */
  height: 55px;
  /*65*/
  border: none;
  box-shadow: 0 0 0 0 #4caf50;
  border-radius: 50%;
  background-color: #4CAF50;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  position: fixed;
  /* usando superior */
  /*
    bottom: 20px;
    right: 20px;
    */
  z-index: 900;
}
#custom-html-5c .pulse-button i.fa.fa-whatsapp {
  color: #fff;
  font-size: 30px;
}
