body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #e1201d !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e1201d !important;
  border-color: #e1201d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #9d1614 !important;
  border-color: #9d1614 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9d1614 !important;
  border-color: #9d1614 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #871311;
  color: #871311;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #e1201d;
  border-color: #e1201d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e1201d !important;
  border-color: #e1201d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #e1201d !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #871311 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0b566f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e1201d;
  border-color: #e1201d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e1201d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9d2d1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #e1201d;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e1201d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e1201d;
  border-bottom-color: #e1201d;
}
.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: #e1201d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #149dcc !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='%23e1201d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tLkAINVtcl {
  background-image: url("../../../assets/images/capa-1.jpg");
}
.cid-tLkAINVtcl .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tLkAINVtcl .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tLkAINVtcl .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tLkAINVtcl H1 {
  color: #d1a96d;
  text-align: center;
}
.cid-tLkAINVtcl H3 {
  text-align: center;
}
.cid-tLeOpNDB1G {
  background: #ffffff;
  background: linear-gradient(45deg, #ffffff, #d5f4ff);
}
.cid-tLeOpNDB1G .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tLeOpNDB1G figcaption {
  position: relative;
}
.cid-tLeOpNDB1G figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLeOpNDB1G .image-block {
    width: 100% !important;
  }
}
.cid-tLeOpNDB1G DIV {
  text-align: center;
}
.cid-tLeR15Fmh7 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/4.jpg");
}
@media (max-width: 767px) {
  .cid-tLeR15Fmh7 .mbr-text {
    text-align: center;
  }
}
.cid-tLeR15Fmh7 .container-fluid {
  padding: 0;
}
.cid-tLeR15Fmh7 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-tLeR15Fmh7 img {
  height: 100%;
  object-fit: cover;
}
.cid-tLeR15Fmh7 .mbr-figure {
  height: 100%;
}
.cid-tLeR15Fmh7 .col-lg-6 {
  padding: 0;
}
.cid-tLeR15Fmh7 .row {
  margin: 0;
}
.cid-tLeR15Fmh7 H1 {
  color: #7c92dc;
  text-heigh: 100px;
}
.cid-tLeR15Fmh7 H3 {
  color: #526c7a;
  text-align: center;
}
.cid-tLeR15Fmh7 .mbr-text,
.cid-tLeR15Fmh7 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tLeR15Fmh7 DIV {
  text-align: center;
}
.cid-tLeYa4KYBA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9faba6;
}
.cid-tLeYa4KYBA .content__block {
  padding: 50px 15px;
}
.cid-tLeYa4KYBA .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #e1201d;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-tLeYa4KYBA .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #35a3dc;
  text-align: left;
}
.cid-tLeYa4KYBA .mbr-text {
  opacity: .6;
  margin-bottom: 25px;
}
.cid-tLeYa4KYBA .image {
  position: relative;
}
.cid-tLeYa4KYBA .image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
}
.cid-tLeYa4KYBA img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tLeYa4KYBA .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-tLeYa4KYBA .mbr-section-btn .btn-white-outline:hover {
  color: #e1201d !important;
}
@media (max-width: 991px) {
  .cid-tLeYa4KYBA .content__block {
    padding: 30px 15px;
  }
  .cid-tLeYa4KYBA .mbr-figure {
    padding: 0;
  }
  .cid-tLeYa4KYBA .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tLeYa4KYBA .lg-push {
    right: 0%;
  }
  .cid-tLeYa4KYBA .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-tLeYa4KYBA .row:hover .image img {
    transform: rotateY(0deg);
  }
}
.cid-tLeYa4KYBA .mbr-section-title {
  color: #526c7a;
  text-align: right;
}
.cid-tLeYa4KYBA .mbr-text,
.cid-tLeYa4KYBA .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-tLeYa4KYBA .mbr-section-title DIV {
  text-align: right;
}
.cid-tLftY2MTBA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8ecf6;
}
@media (max-width: 767px) {
  .cid-tLftY2MTBA .mbr-text {
    text-align: center;
  }
}
.cid-tLftY2MTBA .container-fluid {
  padding: 0;
}
.cid-tLftY2MTBA .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-tLftY2MTBA img {
  height: 100%;
  object-fit: cover;
}
.cid-tLftY2MTBA .mbr-figure {
  height: 100%;
}
.cid-tLftY2MTBA .col-lg-6 {
  padding: 0;
}
.cid-tLftY2MTBA .row {
  margin: 0;
}
.cid-tLftY2MTBA H1 {
  color: #7c92dc;
}
.cid-tLftY2MTBA H3 {
  color: #52156f;
}
.cid-tLftY2MTBA .mbr-text,
.cid-tLftY2MTBA .mbr-section-btn {
  color: #52156f;
}
.cid-tLkIkiA7wm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/evola-fundo2.jpg");
}
.cid-tLkIkiA7wm .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tLkIkiA7wm .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tLkIkiA7wm .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tLkIkiA7wm H1 {
  color: #d1a96d;
  text-align: center;
}
.cid-tLkIkiA7wm H3 {
  text-align: center;
}
.cid-tLkKwnxO22 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/evola-fundo3.jpg");
}
.cid-tLkKwnxO22 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tLkKwnxO22 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tLkKwnxO22 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tLkKwnxO22 H1 {
  color: #d1a96d;
  text-align: center;
}
.cid-tLkKwnxO22 H3 {
  text-align: center;
}
.cid-tLkhZfAV7A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9faba6;
}
.cid-tLkhZfAV7A .content__block {
  padding: 50px 15px;
}
.cid-tLkhZfAV7A .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #e1201d;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-tLkhZfAV7A .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #35a3dc;
  text-align: left;
}
.cid-tLkhZfAV7A .mbr-text {
  opacity: .6;
  margin-bottom: 25px;
}
.cid-tLkhZfAV7A .image {
  position: relative;
}
.cid-tLkhZfAV7A .image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
}
.cid-tLkhZfAV7A img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tLkhZfAV7A .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-tLkhZfAV7A .mbr-section-btn .btn-white-outline:hover {
  color: #e1201d !important;
}
@media (max-width: 991px) {
  .cid-tLkhZfAV7A .content__block {
    padding: 30px 15px;
  }
  .cid-tLkhZfAV7A .mbr-figure {
    padding: 0;
  }
  .cid-tLkhZfAV7A .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tLkhZfAV7A .lg-push {
    right: 0%;
  }
  .cid-tLkhZfAV7A .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-tLkhZfAV7A .row:hover .image img {
    transform: rotateY(0deg);
  }
  .cid-tLkhZfAV7A .lg-push {
    left: 0%;
  }
  .cid-tLkhZfAV7A .row:hover .image img {
    transform: rotateY(0deg);
  }
}
.cid-tLkhZfAV7A .mbr-section-title {
  color: #526c7a;
  text-align: left;
}
.cid-tLkhZfAV7A .mbr-text,
.cid-tLkhZfAV7A .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tLkhZfAV7A .mbr-section-title DIV {
  text-align: left;
}
.cid-tLkjYaqK3X {
  background: #ffffff;
  background: linear-gradient(45deg, #ffffff, #d5f4ff);
}
.cid-tLkjYaqK3X .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tLkjYaqK3X figcaption {
  position: relative;
}
.cid-tLkjYaqK3X figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLkjYaqK3X .image-block {
    width: 100% !important;
  }
}
.cid-tLkjYaqK3X DIV {
  text-align: center;
}
.cid-tLkkyKn0IL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9faba6;
}
.cid-tLkkyKn0IL .content__block {
  padding: 50px 15px;
}
.cid-tLkkyKn0IL .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #e1201d;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-tLkkyKn0IL .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #35a3dc;
  text-align: left;
}
.cid-tLkkyKn0IL .mbr-text {
  opacity: 1;
  margin-bottom: 25px;
}
.cid-tLkkyKn0IL .image {
  position: relative;
}
.cid-tLkkyKn0IL .image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
}
.cid-tLkkyKn0IL img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tLkkyKn0IL .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-tLkkyKn0IL .mbr-section-btn .btn-white-outline:hover {
  color: #e1201d !important;
}
@media (max-width: 991px) {
  .cid-tLkkyKn0IL .content__block {
    padding: 30px 15px;
  }
  .cid-tLkkyKn0IL .mbr-figure {
    padding: 0;
  }
  .cid-tLkkyKn0IL .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tLkkyKn0IL .lg-push {
    right: 0%;
  }
  .cid-tLkkyKn0IL .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-tLkkyKn0IL .row:hover .image img {
    transform: rotateY(0deg);
  }
}
.cid-tLkkyKn0IL .mbr-section-title {
  color: #526c7a;
  text-align: right;
}
.cid-tLkkyKn0IL .mbr-text,
.cid-tLkkyKn0IL .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-tLkkyKn0IL .mbr-section-title DIV {
  text-align: right;
}
.cid-tLeFeA5bs9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/evola-fundo-1.jpg");
}
@media (max-width: 767px) {
  .cid-tLeFeA5bs9 .mbr-text {
    text-align: center;
  }
}
.cid-tLeFeA5bs9 .container-fluid {
  padding: 0;
}
.cid-tLeFeA5bs9 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-tLeFeA5bs9 img {
  height: 100%;
  object-fit: cover;
}
.cid-tLeFeA5bs9 .mbr-figure {
  height: 100%;
}
.cid-tLeFeA5bs9 .col-lg-7 {
  padding: 0;
}
.cid-tLeFeA5bs9 .row {
  margin: 0;
}
.cid-tLeFeA5bs9 .mbr-text,
.cid-tLeFeA5bs9 .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-tLeFeA5bs9 H1 {
  color: #526c7a;
  text-align: right;
}
.cid-tLeFeA5bs9 DIV {
  text-align: right;
}
.cid-tLeuw0YrME {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fundo.jpg");
}
.cid-tLeuw0YrME .mbr-text {
  line-height: 1.55;
  color: #52156f;
}
.cid-tLeuw0YrME .price {
  margin-top: 5px;
}
.cid-tLeuw0YrME .symbol {
  line-height: 1.1;
  top: 3px;
  vertical-align: top;
  position: relative;
}
.cid-tLeuw0YrME .mbr-section-btn {
  margin: 10px 0 0 0;
}
.cid-tLeuw0YrME .btn-md {
  padding: 0 20px 0 15px ;
  height: 10px;
  margin: 0 !important;
}
.cid-tLeuw0YrME .btn-md:hover {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.cid-tLeuw0YrME .btn-md .mbr-iconfont {
  margin: 5px 0 0 !important;
  animation-name: none;
  order: 0;
}
.cid-tLeuw0YrME .mbr-iconfont:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 23px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 10px 0 10px;
}
@media (max-width: 991px) {
  .cid-tLeuw0YrME .content__block,
  .cid-tLeuw0YrME .price__block {
    margin-bottom: 30px;
  }
}
.cid-tLeuw0YrME .descr {
  color: #444345;
}
.cid-tLeuw0YrME .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tLeFBncmDd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #526c7a;
}
.cid-tLeFBncmDd .mbr-text {
  color: #767676;
}
.cid-tLeFBncmDd .card-subtitle {
  margin: 0;
}
.cid-tLeFBncmDd .link {
  margin: 0;
}
.cid-tLeFBncmDd .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-tLeFBncmDd .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-tLeFBncmDd img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-tLeFBncmDd .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-tLeFBncmDd .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tLeFBncmDd .card-img:hover:before {
  opacity: 0.4;
}
.cid-tLeFBncmDd .card-img:hover img {
  transform: scale(1.05);
}
.cid-tLeFBncmDd .row {
  justify-content: center;
}
.cid-tLeFBncmDd .card {
  margin-bottom: 4rem;
}
.cid-tLeFBncmDd .card-title,
.cid-tLeFBncmDd .card-img DIV {
  text-align: left;
}
.cid-tLeFBncmDd .mbr-text,
.cid-tLeFBncmDd .link {
  text-align: left;
  color: #ffffff;
}
.cid-tLeFBncmDd .card-title,
.cid-tLeFBncmDd .card-img {
  color: #9faba6;
}
.cid-tLfISucxMP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #526c7a;
}
.cid-tLfISucxMP .content__block {
  padding: 50px 15px;
}
.cid-tLfISucxMP .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #e1201d;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-tLfISucxMP .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #031b95;
  text-align: left;
}
.cid-tLfISucxMP .mbr-text {
  opacity: .8;
  margin-bottom: 25px;
}
.cid-tLfISucxMP .image {
  position: relative;
}
.cid-tLfISucxMP .image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
}
.cid-tLfISucxMP img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tLfISucxMP .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-tLfISucxMP .mbr-section-btn .btn-white-outline:hover {
  color: #e1201d !important;
}
@media (max-width: 991px) {
  .cid-tLfISucxMP .content__block {
    padding: 30px 15px;
  }
  .cid-tLfISucxMP .mbr-figure {
    padding: 0;
  }
  .cid-tLfISucxMP .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tLfISucxMP .lg-push {
    right: 0%;
  }
  .cid-tLfISucxMP .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-tLfISucxMP .row:hover .image img {
    transform: rotateY(0deg);
  }
  .cid-tLfISucxMP .lg-push {
    left: 0%;
  }
  .cid-tLfISucxMP .row:hover .image img {
    transform: rotateY(0deg);
  }
}
.cid-tLfISucxMP .mbr-section-title {
  color: #526c7a;
  text-align: left;
}
.cid-tLfISucxMP .mbr-text,
.cid-tLfISucxMP .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tLfISucxMP .mbr-section-title DIV {
  text-align: left;
}
.cid-tLktKjKe81 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e8ecf6;
}
@media (max-width: 767px) {
  .cid-tLktKjKe81 .mbr-text {
    text-align: center;
  }
}
.cid-tLktKjKe81 .container-fluid {
  padding: 0;
}
.cid-tLktKjKe81 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-tLktKjKe81 img {
  height: 100%;
  object-fit: cover;
}
.cid-tLktKjKe81 .mbr-figure {
  height: 100%;
}
.cid-tLktKjKe81 .col-lg-6 {
  padding: 0;
}
.cid-tLktKjKe81 .row {
  margin: 0;
}
.cid-tLktKjKe81 H1 {
  color: #7c92dc;
}
.cid-tLktKjKe81 H3 {
  color: #52156f;
}
.cid-tLktKjKe81 .mbr-text,
.cid-tLktKjKe81 .mbr-section-btn {
  color: #52156f;
}
.cid-tLkqhvz3I2 {
  background: #ffffff;
  background: linear-gradient(45deg, #ffffff, #d5f4ff);
}
.cid-tLkqhvz3I2 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tLkqhvz3I2 figcaption {
  position: relative;
}
.cid-tLkqhvz3I2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLkqhvz3I2 .image-block {
    width: 100% !important;
  }
}
.cid-tLkqhvz3I2 DIV {
  text-align: center;
}
.cid-tLkzwe2tan {
  padding-top: 45px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/evola-fundo-contra-capa.jpg");
}
.cid-tLkzwe2tan .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tLkzwe2tan .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tLkzwe2tan .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tLkzwe2tan H1 {
  color: #d1a96d;
  text-align: center;
}
.cid-tLkzwe2tan H3 {
  text-align: center;
}
