@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #28a745 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #0a68f9 !important;
  border-color: #0a68f9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a68f9 !important;
  border-color: #0a68f9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #055de5;
  color: #055de5 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #28a745 !important;
  border-color: #28a745 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #28a745 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #055de5 !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: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #28a745;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #66458e;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #66458e;
  border-bottom-color: #66458e;
}
.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: #66458e !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: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("../../../data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2366458e' %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-sc6BFlqG33 {
  background-image: url("../../../assets/images/topo2-1820x1000.jpg");
}
.cid-sc6BFlqG33 .mbr-overlay {
  background: #879a9f;
}
.cid-sc6BFlqG33 .mbr-section-title {
  letter-spacing: -1px;
  text-align: left;
}
.cid-sc6BFlqG33 H4 {
  text-align: left;
}
.cid-sc6DWPnJUz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sc6DWPnJUz .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sc6DWPnJUz .row-element,
.cid-sc6DWPnJUz .image-element {
  padding: 0;
}
.cid-sc6DWPnJUz .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sc6DWPnJUz .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sc6DWPnJUz .text-content {
  padding: 3rem;
}
.cid-sc6DWPnJUz .mbr-section-subtitle {
  color: #767676;
}
.cid-sc6DWPnJUz .mbr-section-title {
  color: #28a745;
}
@media (max-width: 767px) {
  .cid-sc6DWPnJUz .text-content {
    padding: 2rem 1rem;
  }
  .cid-sc6DWPnJUz .mbr-title,
  .cid-sc6DWPnJUz .underline,
  .cid-sc6DWPnJUz .mbr-text,
  .cid-sc6DWPnJUz .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sc6DWPnJUz .mbr-title {
  text-align: left;
  color: #28a745;
}
.cid-sc6DWPnJUz .mbr-text,
.cid-sc6DWPnJUz .mbr-section-btn {
  text-align: left;
  color: #656565;
}
.cid-sc0RaWSM8r {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-sc0RaWSM8r .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sc0RaWSM8r .mbr-text {
  color: #8d97ad;
}
.cid-sc0RaWSM8r .nav {
  border: none;
}
.cid-sc0RaWSM8r .nav-tabs {
  width: 100%;
}
.cid-sc0RaWSM8r .nav-tabs .nav-item {
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sc0RaWSM8r .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(165, 164, 165, 0.3);
  box-shadow: 0px 0px 30px rgba(165, 164, 165, 0.3);
}
.cid-sc0RaWSM8r .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sc0RaWSM8r .nav-tabs .nav-link {
  display: flex;
  color: #269b36;
  box-sizing: border-box;
  font-style: normal;
  background: #f3f3f3;
  font-weight: 500;
  padding: 1rem;
  border: 2px solid #269b36;
  margin: 0px;
  border-radius: 7px !important;
  transition: all .3s;
}
.cid-sc0RaWSM8r .nav-tabs .nav-link:hover {
  background-color: #28a745;
  color: #ffffff;
}
.cid-sc0RaWSM8r .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #28a745;
}
.cid-sc0RaWSM8r .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sc0RaWSM8r .nav-item {
    display: table-row !important;
  }
}
.cid-sc0RaWSM8r .mbr-section-title {
  color: #28a745;
}
.cid-sc0RaWSM8r .title-content {
  color: #28a745;
}
.cid-sc0RaWSM8r .mbr-text,
.cid-sc0RaWSM8r .mbr-section-btn {
  color: #656565;
}
.cid-sc6BCbaLeO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sc6BCbaLeO .nav-item,
.cid-sc6BCbaLeO .nav-link,
.cid-sc6BCbaLeO .navbar-caption {
  font-weight: normal;
}
.cid-sc6BCbaLeO .nav-item:focus,
.cid-sc6BCbaLeO .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc6BCbaLeO .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-sc6BCbaLeO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sc6BCbaLeO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sc6BCbaLeO .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sc6BCbaLeO .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sc6BCbaLeO .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc6BCbaLeO .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sc6BCbaLeO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc6BCbaLeO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc6BCbaLeO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #28a745;
  background: none;
}
.cid-sc6BCbaLeO .navbar.opened {
  transition: all .3s;
  background: #28a745 !important;
}
.cid-sc6BCbaLeO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sc6BCbaLeO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-sc6BCbaLeO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc6BCbaLeO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc6BCbaLeO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-sc6BCbaLeO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc6BCbaLeO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc6BCbaLeO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sc6BCbaLeO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sc6BCbaLeO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc6BCbaLeO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sc6BCbaLeO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc6BCbaLeO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc6BCbaLeO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc6BCbaLeO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc6BCbaLeO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc6BCbaLeO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sc6BCbaLeO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sc6BCbaLeO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc6BCbaLeO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc6BCbaLeO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sc6BCbaLeO .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc6BCbaLeO .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sc6BCbaLeO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc6BCbaLeO .navbar.navbar-short {
  background: #fff !important;
  min-height: 60px;
}
/* .cid-sc6BCbaLeO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
} */
.cid-sc6BCbaLeO .navbar.navbar-short .navbar-logo {
  display: none;
}

.cid-sc6BCbaLeO .navbar.navbar-short .navbar-colorida {
  display: block !important;
  height: 3rem !important;
}
.cid-sc6BCbaLeO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc6BCbaLeO .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc6BCbaLeO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc6BCbaLeO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc6BCbaLeO .dropdown-item.active,
.cid-sc6BCbaLeO .dropdown-item:active {
  background-color: transparent;
}
.cid-sc6BCbaLeO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sc6BCbaLeO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc6BCbaLeO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc6BCbaLeO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28a745;
}
.cid-sc6BCbaLeO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc6BCbaLeO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc6BCbaLeO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sc6BCbaLeO .navbar-buttons {
  text-align: center;
}
.cid-sc6BCbaLeO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sc6BCbaLeO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sc6BCbaLeO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc6BCbaLeO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc6BCbaLeO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc6BCbaLeO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc6BCbaLeO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc6BCbaLeO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc6BCbaLeO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc6BCbaLeO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc6BCbaLeO .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc6BCbaLeO a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sc6BCbaLeO .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-sc6BCbaLeO .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sc6BCbaLeO .soc-item {
  margin: .5rem .3rem;
}
.cid-sc6BCbaLeO .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sc6BCbaLeO a.nav-link,
.cid-sc6BCbaLeO a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-sc6BCbaLeO a.nav-link .mbr-iconfont-btn,
.cid-sc6BCbaLeO a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sc6BCbaLeO a.nav-link:hover .mbr-iconfont-btn,
.cid-sc6BCbaLeO a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sc6BCbaLeO a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc6BCbaLeO .navbar {
    height: 77px;
  }
  .cid-sc6BCbaLeO .navbar.opened {
    height: auto;
  }
  .cid-sc6BCbaLeO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sc6OvHUWoM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #3c6ebc;
}
.cid-sc6OvHUWoM .title {
  background: #ffffff;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.cid-sc6OvHUWoM .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-sc6OvHUWoM p {
  margin: 0;
  padding: 0;
}
.cid-sc6OvHUWoM .card {
  margin-bottom: 2rem;
}
.cid-sc6OvHUWoM .card-block {
  letter-spacing: 0.03em;
  position: relative;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.cid-sc6OvHUWoM .card-block:before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-top: 15px solid #ffffff;
  border-right: 15px solid transparent;
}
.cid-sc6OvHUWoM .mbr-author-img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 100%;
  margin-left: 0rem;
  margin-right: 1.5rem;
}
.cid-sc6OvHUWoM .mbr-author-img img {
  width: 100%;
  border-radius: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sc6OvHUWoM .name-wrap {
  display: inline-block;
}
.cid-sc6OvHUWoM .card-footer {
  margin-top: 1rem;
  display: flex;
  border-top: none;
  background: none;
  padding: .75rem 1.25rem 1.25rem 1.25rem;
}
.cid-sc6OvHUWoM .mbr-author-desc {
  color: #ffffff;
}
.cid-sc6OvHUWoM .card-block P {
  color: #767676;
}
.cid-sc6OvHUWoM .mbr-author-name {
  color: #ffffff;
}
.cid-sc6OvHUWoM .mbr-section-title,
.cid-sc6OvHUWoM .title DIV {
  color: #232323;
  text-align: center;
}
.cid-sc6PCNx5E7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sc6PCNx5E7 .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sc6PCNx5E7 .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sc6PCNx5E7 .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sc6PCNx5E7 .wrap-img {
  padding-bottom: 1rem;
}
.cid-sc6PCNx5E7 .wrap-img img {
  max-width: 100%;
}
.cid-sc6PCNx5E7 .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sc6Qh73Nfb {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #f3f3f3;
}
.cid-sc6Qh73Nfb a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sc6Qh73Nfb a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sc6Qh73Nfb .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sc6Qh73Nfb .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-sc6Qh73Nfb .form-control {
  background: none;
  border-radius: 0px;
}
.cid-sc6Qh73Nfb textarea.form-control {
  min-height: 214.5px;
}
.cid-sc6Qh73Nfb .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-sc6Qh73Nfb h4,
.cid-sc6Qh73Nfb p {
  margin: 0;
}
.cid-sc6Qh73Nfb h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-sc6Qh73Nfb h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-sc6Qh73Nfb .icon {
  color: #656565;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sc6Qh73Nfb h2 {
    text-align: center;
  }
  .cid-sc6Qh73Nfb h3 {
    text-align: center;
  }
  .cid-sc6Qh73Nfb .input-group-btn {
    text-align: center;
  }
  .cid-sc6Qh73Nfb .social-list {
    text-align: center;
  }
  .cid-sc6Qh73Nfb .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-sc6Qh73Nfb H2 {
  color: #656565;
}
.cid-sc6Qh73Nfb .content {
  text-align: left;
  color: #656565;
}
.cid-sc6Qh73Nfb .type {
  text-align: left;
  padding-bottom: 8px;
  color: #232323;
}
.cid-sc6Qh73Nfb .title1 {
  text-align: left;
  color: #28a745;
}
.cid-sc6Qh73Nfb .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-sc6Qh73Nfb .title2 {
  color: #656565;
}
.cid-sc6X0U4tC8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sc6X0U4tC8 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sc6X0U4tC8 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sc6X0U4tC8 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sc6X0U4tC8 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sc6X0U4tC8 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #28a745;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sc6X0U4tC8 .icon-transition span:hover {
  background-color: #3c6ebc;
}
.cid-sc6X0U4tC8 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sc6X0U4tC8 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 15px;
  }
  .cid-sc6X0U4tC8 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 1.5rem;
  }
  .cid-sc6X0U4tC8 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.flex-center {
  display: flex;
  justify-content: center;
}

.tab-item {
  border-radius: 7px !important;
}
#slide-header{
  /* max-height: 100vh; */
  height: 700px;
}
#slide-header>.owl-nav {
  position: relative;
}

#slide-header .owl-dots .owl-dot {
  display: block;
  margin-bottom: 15px;
  position: relative;
  transition: all .35s
}

#slide-header .owl-dots .owl-dot span {
  width: auto;
  height: auto;
  margin: 0;
  padding: 5px 7px;
  font-size: 14px;
  background: none;
  display: block;
  transition: opacity .2s ease;
  border-radius: 0;
  color: #FFFFFF;
  opacity: 0.5;
  border-bottom: 1px solid transparent
}

#slide-header .owl-dots .owl-dot:hover span {
  border-bottom: 1px solid red
}

#slide-header .owl-dots .owl-dot.active span {
  border-bottom: 1px solid red;
  opacity: 1
}

#slide-header {
  background-color: #fff;
  display: block
}

#slide-header .item {
  height: 700px;
  width: 100%;
  background-size: cover !important;
  cursor: -webkit-grab;
  display: flex;
  align-items: center;
  justify-content: left;
}

#slide-header .item .info .btn-branco {
  margin: 0;
  margin-top: 15px
}

#slide-header div.owl-nav {
  bottom: 400px
}

#slide-header .owl-prev {
  background: transparent;
}

#slide-header .owl-next {
  background: transparent;
}

#slide-header button.owl-next {
  outline: none;
  margin-right: 70px;
}

#slide-header button.owl-prev {
  outline: none;
  margin-left: 70px;
}
@media(max-width: 768px){
  #slide-header button.owl-prev {
    outline: none;
    margin-left: 9px;
  }
  #slide-header button.owl-next {
    outline: none;
    margin-right: 9px;
  }
}
div.owl-nav {
  position: relative;
  bottom: 200px;
  display: flex;
  justify-content: space-between;
}

button.owl-next span {
  font-size: 70px;
  color: #FFFFFF;
  opacity: 0.5;
}

button.owl-prev span {
  font-size: 70px;
  color: #FFFFFF;
  opacity: 0.5;
}
.cid-sc0RaWSM8r .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #28a745;
}
.cid-sc6BCbaLeO .navbar-short .navbar-nav .nav-link {
  color: #303030 !important;
}
.navbar-short div.hamburger span{
  color: #000000 !important;
  background-color: #000000 !important;
}
.btn-circle {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  position: relative;
  z-index: 100;
  color: #0171C3;
  top: -32px;
  background-color: #fff;
  /* box-shadow: 0px 3px 9px #242424; */
   box-shadow: 0px 10px 10px #e7e7e7;
}
.btn-circle:hover {
  color: #0171C3;
  /* opacity: 0.8; */
}
.div-btn-banner {
  display: flex;
  background-color: #fff;
  justify-content: center;
  /* height: 30px; */
  /* position: absolute; */
  /* width: 70%; */
  z-index: 100;
}
.direction-column{
  flex-direction: column;
}
.align-flex-end{
  align-items: flex-end;
}
.align-center{
  align-items: center;
}
.text-left{
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.info h4{
  font-size: 25px;
}
.info h3 {
  font-size: 34px;
}
.text-slide{
  position: relative;
  left: 20%;
  margin-top: 14%;
}
@media(max-width: 768px){
  .div-btn-banner{
    display: none;
  }
  .text-slide{
    left: 0;
  }
}
.navbar-brand{
    margin-left: -16px;
}
@media(min-width: 768px){
  .visible-md{
    display: block !important;
  }
  .visible-sm {
    display: none !important;
  }
}
@media(max-width: 768px){
  .visible-md {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
}
.slide1{
  background:url('../../images/topo2-1820x1000.jpg') no-repeat center center;
}
.slide2{
  background:url('../../images/topo2_b-1820x1000.jpg') no-repeat center center;
}
@media(max-width: 768px){
  #slide-header .item{
    align-items: flex-start !important;
    padding-top: 52px !important;
  }
  .info h4 {
    font-size: 20px;
    text-align: center !important;
  }

  .info h3 {
    line-height: 31px;
    font-size: 27px;
    text-align: center !important;
  }
  .slide1 {
    background: url('../../images/banner_1_mobile.jpg') no-repeat center center;
  }

  .slide2 {
    background: url('../../images/banner_2_mobile.jpg') no-repeat center center;
  }
}
@media(max-width: 768px){
  #whatsapp{
      bottom: 20.5% !important;
      /* background: transparent !important; */
  }
}
@media only screen and (max-width: 2760px) {
  #whatsapp {
    bottom: 2%;
    right: 2%;
  }
}

#whatsapp {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 999;
}
/* #whatsapp {
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
      transition-property: background-color,
      color,
      border-color,
      box-shadow;
      transition-duration: .3s,
      .3s,
      .3s,
      2s;
      transition-timing-function: ease-in-out;
  }
   */
  /* #whatsapp:hover{ */
    /* color: #ffffff !important;
    background-color: #0a68f9 !important;
    border-color: #0a68f9 !important;
  }
  #whastapp:hover:after,
  #whastapp:focus:after,
  #whastapp.active:after {
    content: '';
    border: 1px solid;
    border-color: inherit;
    width: 100%;
    height: 100%;
    transition: border-radius .3s;
    position: absolute;
    left: 0%;
    top: 0%;
    opacity: 1;
  } */
  .floating-animation {  
    animation: floating 2s ease-in-out infinite;
  }
  @keyframes floating {
    0% {
      /* bottom: 70px */
      transform: translate(0%, 0%);

    }

    50% {
      /* bottom: 95px */
      transform: translate(0%, 10%);
    }

    100% {
      /* bottom: 70px */
      transform: translate(0%, 0%);
    }
  }