.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #9a4ac3 !important;
}
.bg-warning {
  background-color: #fbb011 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  border-radius: 1rem;
  background-color: #7474b5 !important;
  border-color: #7474b5 !important;
  color: #ffffff !important;
  font-size: 2rem;
  /* font-stretch: expanded; */
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
 border-radius: 1rem;
  color: #ffffff !important;
  background-color: #9a4ac3 !important;
  border-color: #9a4ac3 !important;
  font-size: 1.9rem;
  /* letter-spacing: 0.1rem; */
   /* font-stretch: expanded; */
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
 border-radius: 1rem;
  color: #ffffff !important;
  background-color: #9a4ac3!important;
  font-size: 2rem;
  border-color: #6a2d89 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fbb011 !important;
  border-color: #fbb011 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b27a03 !important;
  border-color: #b27a03 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);

}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b27a03 !important;
  border-color: #b27a03 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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.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.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: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #9a4ac3;
  color: #9a4ac3;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #6a2d89 !important;
  background-color: transparent!important;
  border-color: #6a2d89 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #9a4ac3 !important;
  border-color: #9a4ac3 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fbb011;
  color: #fbb011;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b27a03 !important;
  background-color: transparent!important;
  border-color: #b27a03 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #fbb011 !important;
  border-color: #fbb011 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #9a4ac3 !important;
}
.text-warning {
  color: #fbb011 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #612a7d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a37003 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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;
}

.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #9a4ac3;
}
.alert-warning {
  background-color: #fbb011;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cfaae3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fef3da;
}
.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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.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: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #ff6666 !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='%23ffffff' %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;
}

/*--------------------------------------- Primeira-lamina -----------------------------------------------------------------------------------------------------------*/
.cid-tSoVNibeAd {
  width: 100%;
}

.cid-tSoVNibeAd {
  padding-top: 8rem;
  padding-bottom: 2rem;
  width: 100%;
  background-image: url('/assets/images/imagesnew/fundo-1-2000x2819.png');
}

.cid-tSoVNibeAd  .text-wrapper {
  padding: 1rem;
}

.cid-tSoVNibeAd .custom-title {
  font-size: 3rem;
  color: #7474b5;
   font-style: normal;
  line-height: 4rem;
}

@media (min-width: 1000px){
  .cid-tSoVNibeAd .desktop-title{
    display:block
  }
  .cid-tSoVNibeAd .desktop-title{
    display:block
  }
  .cid-tSoVNibeAd .mobile-title{
    display: none;
  }

  .cid-tSoVNibeAd .mobile-text{
    display: none;
  }

}

@media (max-width: 999px){
  .cid-tSoVNibeAd .desktop-title{
    display:none
  }
  .cid-tSoVNibeAd .desktop-text{
    display:none
  }
  .cid-tSoVNibeAd .mobile-title{
    display: block;
  }
  .cid-tSoVNibeAd .mobile-text{
    display: block;
  }
}




.cid-tSoVNibeAd
section,
.container-flux {
  position: relative;
  word-wrap: break-word;
  padding-left: 7rem;
  padding-right: 7rem;
}

.cid-tSoVNibeAd .display-5 {
    font-family: 'Jost', sans-serif;
    font-size: 4rem;

    line-height: 1.5;
  }

  .cid-tSoVNibeAd .text-wrapper .mbr-text{
    font-style: normal;
    color: #000;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  @media (min-width: 992px) {
    .cid-tSoVNibeAd .text-wrapper {
      padding: 0.2rem;
    }
  }

.cid-tSoVNibeAd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSoVNibeAd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSoVNibeAd .hr{
  padding-left: 4rem;
  padding-right: 4rem;
  height: 0.15rem; /* Ajuste a altura conforme necessário */
  background-color: #000; /* Cor da linha (substitua pela cor desejada) */
  margin: 3rem;
}

.cid-tSoVNibeAd .row {
  align-items: center;
}

.cid-tSoVNibeAd .slide-wrapper{
  padding-top: 2rem;
  max-width: 65%;
  padding-left: 3rem;
}

@media (min-width: 992px) {
  .cid-tSoVNibeAd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tSoVNibeAd .media-content,
.cid-tSoVNibeAd .mbr-figure {
  align-self: center;
}
.cid-tSoVNibeAd .mbr-figure iframe {
  width: 100%;
}
.cid-tSoVNibeAd .mbr-section-title {
  color: #7474b5;
   font-style: normal;
  line-height: 1.4;

}


/* mobile-responsividade */
@media (max-width: 767px) {
  .cid-tSoVNibeAd {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    background-image: url('/assets/images/imagesnew/fundo-1-2000x2819.png');
  }

  .cid-tSoVNibeAd .container-flux {
      width: 100% !important;
      word-wrap: break-word;
      padding: 2rem !important;

    }

    .cid-tSoVNibeAd h1{
       font-size: 3rem;
    }

    .cid-tSoVNibeAd .container-flux .col-6 {
      width: 100% !important; /* Ocupa 100% da largura em telas pequenas */
      order: initial; /* Volta para a ordem original */
  }
  .cid-tSoVNibeAd .container-flux .order-md-1 {
     order: 2; /* Altera a ordem do elemento de vídeo */
   }

   .cid-tSoVNibeAd .container-flux .custom-title {
    width: 100% !important;
    font-size: 2.5rem;
    line-height: 3.2rem;
  }

  .cid-tSoVNibeAd .container-flux .display-5 {
      font-family: 'Jost', sans-serif;
      font-size: 2rem;
      line-height: 1;
    }

    .cid-tSoVNibeAd .row {
      align-items: center;
      margin-top: 1rem;
    }

    .cid-tSoVNibeAd .hr{
      padding-left: 1rem;
      padding-right: 1rem;
      height: 0.15rem; /* Ajuste a altura conforme necessário */
      background-color: #000; /* Cor da linha (substitua pela cor desejada) */
      margin: 0rem;
    }

    .cid-tSoVNibeAd .mbr-section-btn{
      display: none;
    }

    .cid-tSoVNibeAd .slide-wrapper{
      max-width: 80%;
      padding-left: 4rem;
    }

    /* video */
    .mbr-embedded-video {
      width: 100%; /* Pode ajustar a largura conforme necessário para dispositivos móveis */
      height: auto; /* Mantém a proporção original do vídeo */
    }
}

@media screen and (min-width: 768px) and (max-width: 1324px) {
  .cid-tSoVNibeAd {
    margin-top: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    background-image: url('/assets/images/imagesnew/fundo-1-2000x2819.png');
  }

  .cid-tSoVNibeAd .container-flux {
      width: 100% !important;
      word-wrap: break-word;
      padding: 2rem !important;

    }

    .cid-tSoVNibeAd .container-flux .col-6 {
      width: 100% !important; /* Ocupa 100% da largura em telas pequenas */
      order: initial; /* Volta para a ordem original */
  }
  .cid-tSoVNibeAd .container-flux .order-md-1 {
     order: 2; /* Altera a ordem do elemento de vídeo */
   }


   .cid-tSoVNibeAd .container-flux .custom-title {
    width: 100% !important;
    font-size: 4rem; /* Ou ajuste o tamanho desejado para dispositivos móveis */
  }

  .cid-tSoVNibeAd .container-flux .display-5 {
      font-family: 'Jost', sans-serif;
      font-size: 2rem;
      line-height: 1;
    }

    .cid-tSoVNibeAd .row {
      align-items: center;
      margin-top: 1rem;
    }

    .cid-tSoVNibeAd .hr{
      padding-left: 1rem;
      padding-right: 1rem;
      height: 0.15rem; /* Ajuste a altura conforme necessário */
      background-color: #000; /* Cor da linha (substitua pela cor desejada) */
      margin: 0rem;
    }

    .cid-tSoVNibeAd .text-wrapper .mbr-text{
      font-style: normal;
      color: #000;
      font-size: 1.5rem;
      line-height: 1.5rem;
    }


    .cid-tSoVNibeAd .mbr-section-btn{
      display: none;
    }

    .cid-tSoVNibeAd .slide-wrapper{
      max-width: 80%;
      padding-left: 4rem;
    }

    /* video */
    .mbr-embedded-video {
      width: 100%; /* Pode ajustar a largura conforme necessário para dispositivos móveis */
      height: auto; /* Mantém a proporção original do vídeo */
    }
}
/* -----------------------------------------------------------------------------------------------*/


.cid-tSp5jQhUu2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tSp5jQhUu2 .item:focus,
.cid-tSp5jQhUu2 span:focus {
  outline: none;
}
.cid-tSp5jQhUu2 .item-wrapper {
  position: relative;
}

.item-evento-wrapper a {
    display: block;
    overflow: hidden;
    position: relative;
}

.item-evento-wrapper a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Cor do fundo escuro com transparência */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-evento-wrapper a:hover::before {
    opacity: 1;
}

.cid-tSp5jQhUu2 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}

@media (min-width: 992px) {
  .cid-tSp5jQhUu2 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSp5jQhUu2 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSp5jQhUu2 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSp5jQhUu2 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSp5jQhUu2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSp5jQhUu2 .mbr-section-title {
  color: #7474b5;
}
.cid-tSp5jQhUu2 .mbr-text,
.cid-tSp5jQhUu2 .mbr-section-btn {
  text-align: center;
}
  .text-center-six{
    padding-top: 1rem;
    /* padding-left: 8rem; */
    margin-left: 8rem;
    padding-bottom: 1.6rem;
    text-align:start;
    font-size: 3rem;
    color:#FFFFFF;

 }
.cid-tSp5jQhUu2 .item-title {
  text-align: center;
  font-size: 3rem;
}
.cid-tSp5jQhUu2 .item-subtitle {
  text-align: center;
  color: #232323;
}

 .item-subtitle2 {
  text-align: center;
  color: #FFFFFF;
}
.cid-tSp5jQhUu2 .wrapper-comments-slides{
  display: flex;
  justify-content: center;
  min-width: 30em;
  max-width: 30em;
  border-style: solid;

}


@media (max-width: 768px) {
  .cid-tSp5jQhUu2 .embla__slide {
    min-width: 50%;
    max-width: initial;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.cid-tSp5jQhUu2 .embla__button--next,
.cid-tSp5jQhUu2 .embla__button--prev {
  display: flex;
}
.cid-tSp5jQhUu2 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tSp5jQhUu2 .embla__button {
    display: none;
  }
}
.cid-tSp5jQhUu2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tSp5jQhUu2 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tSp5jQhUu2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 5rem;
}
.cid-tSp5jQhUu2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 5rem;
}
@media (max-width: 767px) {
  .cid-tSp5jQhUu2 .embla__button {
    top: auto;
  }
}
.cid-tSp5jQhUu2 .embla {
  position: relative;
  width: 100%;
}

 .embla-evento {
  position: center;
  width: 100%;
}
.cid-tSp5jQhUu2 .embla__viewport {
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.cid-tSp5jQhUu2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tSp5jQhUu2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tSp5jQhUu2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;

}
.cid-tSAZk2fI8k {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #7474b5;
}

/* -----------------------------------lamina soluções -- segunda Lamina --------------------------------------------------------------------*/

.view-desktop{
  display: block;
}


.lamina-soluções{
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
  height: 1000px;
  background-color: #7474b5;
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  display: block;
}

.lamina-soluções .container {
  position: relative;
  width:100%;
  height:100%;
  display: flex;
  flex-wrap: wrap;
}


.lamina-soluções .title{
  margin:4rem;
  margin-top:2rem;
  position: absolute;
  left: 44%;
  top:10%;
  transform:translate(-50%, -50%);
  width: 30rem;
  height: 15rem;
  text-align: center;
  line-height: 6rem;
}

.lamina-soluções .title .title-text{
  animation-duration: 4.5s;
  font-size: 4.5rem;
  font-weight:7rem;
  line-height:1.2;
}

.lamina-soluções .mbr-section-title {
  font-style: normal;
  line-height: 1.4;
}

.lamina-soluções .mbr-fonts-style-title{
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lamina-soluções .mbr-fonts-style-second{
  color: #fbb011; margin-top:-2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lamina-soluções .image-logo{
  margin-top:2rem;
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: auto;
  text-align: center;
  line-height: 6rem;
}

.wrapper-right{
  position: absolute;
  top: 41%;
  left: 69%;
  overflow:hidden!important;
}

.wrapper-right img{
  margin-bottom: 3rem!important;
}

.wrapper-right-up{
  position: absolute;
  top: 24%;
  left: 63%;
  overflow:hidden!important;
}

.wrapper-right-down{
  position: absolute;
  bottom: 22%;
  left: 63%;
  padding-top: 2rem;
  overflow:hidden!important;
}

.wrapper-right-down img{
  margin-bottom: 3rem!important;
}

.wrapper-left{
  position: absolute;
  top: 38%;
  right: 69%;
  overflow:hidden!important;
}

.wrapper-left img{
  margin-bottom: 1.2rem!important;
}

.wrapper-left-up{
  position: absolute;
  top: 17%;
  right: 65%;
  overflow:hidden!important;
}

.wrapper-left-down{
  position: absolute;
  bottom: 24%;
  right: 65%;
  overflow:hidden!important;
}
.wrapper-left-down img{
  margin-bottom: 2rem;
}

.wrapper-down{

}

.image-down{
  max-width: max-content;
  animation-duration: 2.5s;
  position:absolute;
  bottom:19%;
  right: 48%!important;
  overflow:hidden!important;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);

}

.text-down{
  margin-top:3rem;
  animation-duration: 4.5s;
  position: absolute;
  bottom: 11%!important;
  right: 36%!important;
}


.image-format{
  z-index: 1;
  background-color: #fbb011;
  padding: 0.5rem;
  border-radius: 50%;
  max-width: 4rem;
  animation-duration: 2.5s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.image-format .image-left{
   position:absolute !important;
   left: -10% !important;
}

.text-right-format{
  animation-duration: 4.5s;
  width:25rem;
  margin-left:1rem;
}

.text-left-format{
  margin-right:0.6rem;
  animation-duration: 4.5s;
  width:25rem;

}

.lamina-soluções .text-white {
  color: #fafafa !important;
  font-size: 1.25rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lamina-soluções .list {
  color: #fbb011;
  font-size: 1.5rem;
  font-style: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.view-mobile{
  display: none;
}

@media screen and (max-width:1399px) and (min-width:1366px){

  .view-desktop{
    display: block;
  }

  .container{
    width: 80%
  }

  .lamina-soluções{
    padding-top:4rem;
    padding-bottom: 2rem;
    width: 100%!important;
    /* max-width: 100%; */
    height: 1024px;
    background-color: #7474b5;
    font-family: 'Jost', sans-serif;
    /* font-size: 1.2rem; */
    line-height: 1rem;
  }

  .lamina-soluções .container {
    position: absolute;
    width:100%;
    height:100%;
    display: flex;
    flex-wrap: wrap;
  }


  .lamina-soluções .title{
    margin:1rem 2rem;
    /* margin-top:; */
    position: absolute;
    left: 60%;
    top:8%;
    transform:translate(-50%, -50%);
    width: max-content;
    height: max-content;
    line-height: 3rem;
  }

  .lamina-soluções .title .title-text{
    animation-duration: 4.5s;
    font-size: 5rem;
    font-weight:3rem;
    line-height:1.2;
  }

  .lamina-soluções .mbr-fonts-style-title{
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .mbr-fonts-style-second{
    color: #fbb011;
    margin-top:-2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .image-logo{
    margin-top:2rem;
    position: absolute;
    top: 40%;
    left: 62%;
    transform: translate(-50%, -50%);
    width: 17rem;
    height: auto;
    text-align: center;
    line-height: 6rem;
  }

  .wrapper-right-up{
    position: absolute;
    top: 22%!important;
    left: 75%;
    overflow:hidden!important;
  }

  .wrapper-right{
    position: absolute;
    top: 34%;
    left: 79%;
    overflow:hidden!important;
  }
  .wrapper-right img{
    margin-bottom: 0rem!important;
  }

  .wrapper-right-down{
    position: absolute;
    bottom: 40%;
    left: 75%;
    overflow:hidden!important;
  }

  .wrapper-right-down img{
    margin-bottom: 0rem!important;
  }

  .wrapper-left-up{
    position: absolute;
    top: 22%;
    right: 52%;
    overflow:hidden!important;
  }

  .wrapper-left{
    position: absolute;
    top: 37%;
    right: 56%;
    overflow:hidden!important;
  }

  .wrapper-left img{
      margin-bottom: 2rem;
  }


  .wrapper-left-down{
    position: absolute;
    bottom: 40%;
    right: 52%;
    overflow:hidden!important;
  }

  .wrapper-down{

  }

  .image-down{
    max-width: max-content;
    animation-duration: 2.5s;
    position:absolute;
    bottom:36%!important;
    right: 37%!important;
    overflow:hidden!important;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }

  .text-down{
    margin-top:3rem;
    animation-duration: 4.5s;
    position: absolute;
    bottom:30%!important;
    right: 24%!important;
  }

  .image-format{
    z-index: 1;
    background-color: #fbb011;
    border-radius: 50%;
    max-width: max-content;
    animation-duration: 2.5s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }

  .image-format .image-left{
     position:absolute !important;
     left: -20% !important;
  }

  .text-right-format{
    animation-duration: 4.5s;
    width:25rem;
    margin-left:2.2rem;
    white-space: pre-line;
  }

  .text-left-format{
    margin-right:0rem;
    animation-duration: 4.5s;
    width:25rem;
  }

  .lamina-soluções .list {
    color: #fbb011;
    font-size: 1.3rem;
    font-style: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .text-white {
    color: #fafafa !important;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .mediaformat{
    margin-bottom:2rem!important;
  }

  .textmediamargin{
    padding-top: 1rem!important;
  }

  .view-mobile{
    display: none;
  }

}

@media screen and (max-width:1428px) and (min-width:1400px){

  .view-desktop{
    display: block;
  }

  .lamina-soluções{
    padding-top:4rem;
    padding-bottom: 2rem;
    width: 100%!important;
    max-width: 100%;
    height: 100%;
    background-color: #7474b5;
    font-family: 'Jost', sans-serif;
    line-height: 1rem;
  }

  .lamina-soluções .container {
    position: absolute;
    width:100%;
    height:100%;
    display: flex;
    flex-wrap: wrap;
  }

  .lamina-soluções .title{
    margin:1rem 2rem;
    position: absolute;
    left: 52%;
    top:8%;
    transform:translate(-50%, -50%);
    width: max-content;
    height: max-content;
    line-height: 3rem;
  }

  .lamina-soluções .title .title-text{
    animation-duration: 4.5s;
    font-size: 5rem;
    font-weight:3rem;
    line-height:1.2;
  }

  .lamina-soluções .mbr-fonts-style-title{
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .mbr-fonts-style-second{
    color: #fbb011;
    margin-top:-2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .image-logo{
    margin-top:2rem;
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: auto;
    text-align: center;
    line-height: 6rem;
  }

  .wrapper-right-up{
    position: absolute;
    top: 21%!important;
    left: 67%;
    overflow:hidden!important;
  }

  .wrapper-right{
    position: absolute;
    top: 38%;
    left: 71%;
    overflow:hidden!important;
  }

  .wrapper-right img{
    margin-bottom: 0rem!important;
  }

  .wrapper-right-down{
    position: absolute;
    bottom: 30%;
    left: 67%;
    overflow:hidden!important;
  }

  .wrapper-right-down img{
    margin-bottom: 0rem!important;
  }

  .wrapper-left-up{
    position: absolute;
    top: 19%;
    right: 58%;
    overflow:hidden!important;
  }

  .wrapper-left{
    position: absolute;
    top: 37%;
    right: 63%;
    overflow:hidden!important;
  }

  .wrapper-left img{
    margin-bottom: 1rem!important;
  }

  .wrapper-left-down{
    position: absolute;
    bottom: 30%;
    right: 58%;
    overflow:hidden!important;
  }

  .wrapper-down{

  }

  .image-down{
    max-width: max-content;
    animation-duration: 2.5s;
    position:absolute;
    bottom:25%!important;
    right: 45%!important;
    overflow:hidden!important;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }

  .text-down{
    margin-top:3rem;
    animation-duration: 4.5s;
    position: absolute;
    bottom:18%!important;
    right: 32%!important;
  }

  .image-format{
    z-index: 1;
    background-color: #fbb011;
    border-radius: 50%;
    max-width: max-content;
    animation-duration: 2.5s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }

  .image-format .image-left{
     position:absolute !important;
     left: -20% !important;
  }

  .text-right-format{
    animation-duration: 4.5s;
    width:25rem;
    margin-left:2.2rem;
    white-space: pre-line;
  }

  .text-left-format{
    margin-right:0rem;
    animation-duration: 4.5s;
    width:25rem;
  }

  .lamina-soluções .list {
    color: #fbb011;
    font-size: 1.3rem;
    font-style: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .text-white {
    color: #fafafa !important;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .mediaformat{
    margin-bottom:1rem!important;
  }

  .textmediamargin{
    padding-top: 1rem!important;
  }

  .view-mobile{
    display: none;
  }

}

/*----------------------------------- mobile-responsive --------------------------------------------------------------------------------------*/

@media screen and (max-width:550px) and (min-width:200px) {

  .view-desktop{
    display: none !important;
  }

  .view-mobile{
    display: block;

  }

  .lamina-soluções .container {
    width: 100%!important;

    /* margin: 0 auto; */
    height: auto!important;
  }


  .lamina-soluções{
    padding-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    font-family: 'Jost', sans-serif;
    /* font-size: 30%; */
    line-height: 1rem;
    height: auto!important;
    flex-direction: column !important;
  }


  .lamina-soluções .title{
    margin:4rem;
    margin-top:2rem;
    position: absolute;
    left: 45%;
    top:10%;
    transform:translate(-50%, -50%);
    width: 30rem;
    height: 15rem;
    text-align: center;
    line-height: 6rem;
  }

  .lamina-soluções  .title-text{
    animation-duration: 4.5s;
    font-size: 3.7rem !important;
    font-weight:1.3rem;
    line-height:1.2;
  }

  .lamina-soluções .mbr-section-title {
    font-style: normal;
    line-height: 1.4;
  }

  .lamina-soluções .mbr-fonts-style-title{
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .mbr-fonts-style-second{
    color: #fbb011; margin-top:-2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .solution-list {
    list-style-type: none;
    padding: 0;
    position:relative;
    margin-top:5%"
  }

  .solution-list li {
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    margin-top: 1.3rem;
    margin-bottom: 0.5rem!important;
  }

  .solution-list li img {
    margin-right: 0.5rem;
    align-self: flex-start!important;
  }

  .lamina-soluções .image-format{
    z-index: 1;
    background-color: #fbb011;
    border-radius: 50%;
    max-width: 3rem;
    height: auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.4rem;
  }

  .text-format{
    max-width: max-content;
    margin-left:1rem;

  }

  .lamina-soluções .list {
    list-style: none;
    margin: 1rem 0 0 0;
    padding-left: 0;
    color: #fbb011;
    font-size: 1.3rem!important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

  }

  .lamina-soluções .image-logo{
    width: 70%;
    height: auto;
    margin-top: 3rem !important;
    margin-bottom: 0rem

  }

  .lamina-solucoes .card-body{
    display: block;
    margin-top: 30% !important;
  }

  .lamina-solucoes .text-white {
    color: #fafafa !important;
    font-size: 3rem !important;
    line-height: 1rem!important;
    font-family: 'Jost', sans-serif;

  }

  .spacement-title{
    margin-bottom: 15%!important;
    margin-top: 2%!important;
  }

  .spacement-logo{
    margin-bottom: 48%!important;
    margin-top: 5%!important;
  }

  .spacement-content{
    margin-bottom: 10%!important;
    margin-top: 5%!important;
  }

  .mg-l-list{
    margin-left: 6%;
  }

  }

@media screen and (max-width:915px) and (min-width:551px) {

    .view-desktop{
      display: none !important;
    }

    .view-mobile{
      display: block;

    }

    .lamina-soluções .container {
      width: 100%!important;
      margin: 0 auto;
      height: auto!important;
    }


    .lamina-soluções{
      padding-top: 4rem;
      padding-bottom: 2rem;
      display: flex;
      font-family: 'Jost', sans-serif;
      /* font-size: 30%; */
      line-height: 1rem;
      height: auto!important;
      flex-direction: column !important;
    }


    .lamina-soluções .title{
      margin:4rem;
      margin-top:2rem;
      position: absolute;
      left: 45%;
      top:10%;
      transform:translate(-50%, -50%);
      width: 30rem;
      height: 15rem;
      text-align: center;
      line-height: 6rem;
    }

    .lamina-soluções  .title-text{
      font-size: 5.4rem;
      font-weight:1.3rem;
      line-height:1.2;
    }

    .lamina-soluções .mbr-section-title {
      font-style: normal;
      line-height: 1.4;
    }

    .lamina-soluções .mbr-fonts-style-title{
      color: #FFFFFF;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .lamina-soluções .mbr-fonts-style-second{
      color: #fbb011; margin-top:-2rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .solution-list {
      list-style-type: none;
      padding: 0;
      position:relative;
      margin-top:5%"
    }

    .solution-list li {
      margin-bottom: 1.3rem;
      display: flex;
      align-items: center;
      margin-top: 1.3rem;
      margin-bottom: 0.5rem!important;
    }

    .solution-list li img {
      margin-right: 0.5rem;
      align-self: flex-start!important;
    }

    .lamina-soluções .image-format{
      z-index: 1;
      background-color: #fbb011;
      border-radius: 50%;
      max-width: 4rem;
      height: auto;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
      margin-bottom: 1.4rem;
    }

    .text-format{
      max-width: max-content;
      margin-left:0.5rem;

    }

    .lamina-soluções .list {
      list-style: none;
      margin: 1rem 0 0 0;
      padding-left: 0;
      color: #fbb011;
      font-size: 1.8rem!important;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

    }

    .lamina-soluções .image-logo{
      width: 78%;
      height: auto;
      top: 80%!important;
    }

    .lamina-solucoes .card-body{
      display: block;
      margin-top: 0% !important;
    }

    .spacement-title{
      margin-bottom: 0%!important;
      margin-top: 0%!important;
    }

    .spacement-logo{
      margin-bottom: 35%!important;
      margin-top: 25%!important;
    }

    .spacement-content{
      margin-bottom: 0%!important;
      margin-top: 0%!important;
    }

    .mg-l-list{
      margin-left: 5%;
    }

    }


@media screen and (max-width:1200px) and (min-width:916px) {

      .view-desktop{
        display: none !important;
      }

      .view-mobile{
        display: block;

      }

      .lamina-soluções .container {
        width: 100%!important;
        margin: 0 auto;
        height: auto!important;
      }


      .lamina-soluções{
        padding-top: 2rem;
        padding-bottom: 2rem;
        display: flex;
        font-family: 'Jost', sans-serif;
        /* font-size: 30%; */
        line-height: 1rem;
        height: auto!important;
        flex-direction: column !important;
      }


      .lamina-soluções .title{
        margin:4rem;
        margin-top:2rem;
        position: absolute;
        left: 45%;
        top:10%;
        transform:translate(-50%, -50%);
        width: 100%;
        height: 15rem;
        text-align: center;
        line-height: 6rem;
      }

      .lamina-soluções  .title-text{
        font-size: 6rem;
        font-weight:1.3rem;
        line-height:1.2;
      }

      .lamina-soluções .mbr-section-title {
        font-style: normal;
        line-height: 1.4;
      }

      .lamina-soluções .mbr-fonts-style-title{
        color: #FFFFFF;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      }

      .lamina-soluções .mbr-fonts-style-second{
        color: #fbb011; margin-top:-2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      }

      .solution-list {
        list-style-type: none;
        padding: 0;
        position:relative;
        margin-top:5%"
      }

      .solution-list li {
        margin-bottom: 1.3rem;
        display: flex;
        align-items: center;
        margin-top: 1.3rem;
        margin-bottom: 0.5rem!important;
      }

      .solution-list li img {
        margin-right: 0.5rem;
        align-self: flex-start!important;
      }

      .lamina-soluções .image-format{
        z-index: 1;
        background-color: #fbb011;
        border-radius: 50%;
        max-width: 5rem;
        height: auto;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
        margin-bottom: 1.4rem;
      }

      /* .text-format{
        max-width: 100%;
        margin-left:0.5rem;
        width: 100%;

      } */

      .lamina-soluções .list {
        list-style: none;
        margin: 0.8rem 0 0 0;
        padding-left: 0;
        color: #fbb011;
        font-size: 2rem!important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

      }

      .lamina-soluções .image-logo{
        width: 76%;
        height: auto;
        top: 80%!important;
      }

      .lamina-solucoes .card-body{
        display: block;
        margin-top: 0% !important;
      }

      .spacement-title{
        margin-bottom: 0%!important;
        margin-top: 0%!important;
      }

      .spacement-logo{
        margin-bottom: 35%!important;
        margin-top: 25%!important;
      }

      .spacement-content{
        margin-bottom: 0%!important;
        margin-top: 0%!important;
      }

      .mg-l-list{
        margin-left: 5%;
      }

      }

@media screen and (max-width:1365px) and (min-width:1201px) {

  .view-desktop{
    display: none !important;
  }

  .view-mobile{
    display: block;

  }

  .lamina-soluções .container {
    width: 100%!important;
    margin: 0 auto;
    height: auto!important;
  }


  .lamina-soluções{
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    font-family: 'Jost', sans-serif;
    /* font-size: 30%; */
    line-height: 1rem;
    height: auto!important;
    flex-direction: column !important;
  }


  .lamina-soluções .title{
    margin:4rem;
    margin-top:2rem;
    position: absolute;
    left: 45%;
    top:10%;
    transform:translate(-50%, -50%);
    width: 100%;
    height: 15rem;
    text-align: center;
    line-height: 6rem;
  }

  .lamina-soluções  .title-text{
    font-size: 8rem;
    font-weight:1.3rem;
    line-height:1.2;
  }

  .lamina-soluções .mbr-section-title {
    font-style: normal;
    line-height: 1.4;
  }

  .lamina-soluções .mbr-fonts-style-title{
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lamina-soluções .mbr-fonts-style-second{
    color: #fbb011; margin-top:-2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .solution-list {
    list-style-type: none;
    padding: 0;
    position:relative;
    margin-top:5%"
  }

  .solution-list li {
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    margin-top: 1.3rem;
    margin-bottom: 0.5rem!important;
  }

  .solution-list li img {
    margin-right: 1rem;
    align-self: flex-start!important;
  }

  .lamina-soluções .image-format{
    z-index: 1;
    background-color: #fbb011;
    border-radius: 50%;
    max-width: 5rem;
    height: auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.4rem;
  }

  .lamina-soluções .list {
    list-style: none;
    margin: 0.8rem 0 0 0;
    padding-left: 0;
    color: #fbb011;
    font-size: 2.5rem!important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

  }

  .lamina-soluções .image-logo{
    width: 69%;
    height: auto;
    top: 85%!important;
    margin-top:2rem;
  }

  .lamina-solucoes .card-body{
    display: block;
    margin-top: 0% !important;
  }

  .spacement-title{
    margin-bottom: 0%!important;
    margin-top: 0%!important;
  }

  .spacement-logo{
    margin-bottom: 35%!important;
    margin-top: 25%!important;
  }

  .spacement-content{
    margin-bottom: 0%!important;
    margin-top: 0%!important;
  }

  .mg-l-list{
    margin-left: 7rem;
  }

  }


/* ------------------------------------------------------------------------------------------------------------------------------------------- */

.cid-tSAZk2fI8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSAZk2fI8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSAZk2fI8k .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-tSAZk2fI8k .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tSAZk2fI8k .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tSAZk2fI8k .mbr-section-title {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tSAZk2fI8k .mbr-section-title {
    width: 100%;
  }
}
.cid-tSAZk2fI8k .mbr-section-subtitle {
  color: #ffffff;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tSAZk2fI8k .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tSAZk2fI8k .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* float: left; */
  width: 75%;
}
@media (max-width: 767px) {
  .cid-tSAZk2fI8k .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-tSAZk2fI8k .col-list {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tSAZk2fI8k .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-tSAZk2fI8k .list-title {
  color: #000000;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-tSAZk2fI8k .list-title {
    padding-bottom: 20px;
  }
}
.cid-tSAZk2fI8k .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
  color: #fbb011;
}

.list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
  color: #fbb011;
}


.cid-tSAZk2fI8k li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}


.cid-tSAZk2fI8k ul li.item::before {
position: absolute;
    left: -2.5em;
    display: flex;
    /* justify-content: flex-start; */
    content: "";
    background: url(../../images/ícones/26-50x50.png) no-repeat center center;
    font-weight: bold;
    font-size: 1.6rem;
    width: 1.6rem;
    background-color: #fbb011;
    border-radius: 50%;
    width: 2em;
    height: 2em;
}


/* ----------------------------------------------------- 7ª Lamina -----------------------------------------------*/

.cid-tSpaAsnBeI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}

.cid-tSpaAsnBeI .row{
  display: flex;
  flex-wrap: wrap;

}

.cid-tSpaAsnBeI .card{
      display: flex;
      flex: 1 0 100%;
      flex-direction: row;
      flex-wrap: wrap;
      max-width: 34rem;
      width: 20rem;
      max-height:20rem;
      height: 18rem;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      margin: 2rem;
      box-sizing: border-box;
      border-radius: 2rem;
      background: #7474b5;
      padding-left: 1rem;
}

.cid-tSpaAsnBeI .card img {
      max-width: 12rem;
      height: auto;
      margin-right: 2rem;
      border-style: solid;
      border-color: #FFFFFF;
      border-width: 0.3rem;
      border-radius: 10rem;
}

.cid-tSpaAsnBeI .card-content {
  flex: 1!important; /* Ocupa o espaço restante disponível */
}

.cid-tSpaAsnBeI .mbr-bold {
  font-weight: 700;
}

.cid-tSpaAsnBeI .mbr-card-tittle {
    z-index: 1;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem; /* Adiciona espaçamento abaixo da span */
  }

  .cid-tSpaAsnBeI .text-back-purple {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background-size: contain;
    background-color: #5C33B0;
  }

  .cid-tSpaAsnBeI .mbr-card-text {
    color: #ffffff;
    font-size: 1.2rem;
    flex: 1;
    margin-top: 1rem; /* Adiciona espaçamento acima do parágrafo */
  }

  .cid-tSpaAsnBeI h2{
    line-height: 2.2rem;
  }


@media screen and (max-width: 767px) and (min-width: 200px) {

  .cid-tSpaAsnBeI {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
  }

  .cid-tSpaAsnBeI .row{
    display: flex;
    justify-content: center;

  }

  .cid-tSpaAsnBeI .card{
        display: flex;
        flex: 1 0 100%;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 22rem;
        width: 22rem;
        max-height:20rem;
        height: auto;
        justify-content: space-between;
        align-items: center;
        padding: 0.625rem;
        margin: 1rem;
        box-sizing: border-box;
        border-radius: 2rem;
        background: #7474b5;
        padding-left: 0.5rem;
  }

  .cid-tSpaAsnBeI .card img {
        max-width: 50%;
        height: auto;
        margin-right: 1rem;
        border-style: solid;
        border-color: #FFFFFF;
        border-width: 0.3rem;
        border-radius: 10rem;
  }

  .cid-tSpaAsnBeI .card-content {
    flex: 2; /* Ocupa o espaço restante disponível */
  }

  .cid-tSpaAsnBeI .mbr-card-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2rem;
    flex: 1;
    margin-top: 1rem; /* Adiciona espaçamento acima do parágrafo */
  }

  .cid-tSpaAsnBeI .mbr-bold {
    font-weight: 100;
  }

}

@media screen and (max-width: 1400px) and (min-width: 768px) {

  .cid-tSpaAsnBeI {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
  }

  .cid-tSpaAsnBeI .row{
    display: flex;
    justify-content: center;

  }

  .cid-tSpaAsnBeI .card{
        display: flex;
        flex: 1 0 100%;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 29rem;
        width: 35%;
        max-height:20rem;
        height: auto;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem;
        margin: 1rem;
        box-sizing: border-box;
        border-radius: 2rem;
        background: #7474b5;
        padding-left: 0.5rem;
  }

  .cid-tSpaAsnBeI .card img {
        max-width: 50%;
        height: auto;
        margin-right: 1rem;
        border-style: solid;
        border-color: #FFFFFF;
        border-width: 0.3rem;
        border-radius: 10rem;
  }

  .cid-tSpaAsnBeI .text-back-purple {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2;
    margin-top: 2rem;
    background-color: #5C33B0;
  }

  .cid-tSpaAsnBeI .card-content {
    flex: 2; /* Ocupa o espaço restante disponível */
  }

  .cid-tSpaAsnBeI .mbr-bold {
    font-weight: 100;
  }

}


/* -----------------------------------------------------------__________-------------------------------------- */


/*_______________------------------------------- Terceira Lamina -----------___________________________*/

.cid-tSpaXbEAJT {
  padding-top: 4rem;
  /* padding-bottom: 1rem; */
  background-image: url('/assets/images/imagesnew/fundo-4-2000x761.png');
}

.cid-tSpaXbEAJT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpaXbEAJT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSpaXbEAJT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tSpaXbEAJT .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tSpaXbEAJT .embla__button--next,
.cid-tSpaXbEAJT .embla__button--prev {
  display: flex;
}
.cid-tSpaXbEAJT .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tSpaXbEAJT .embla__button {
    display: none;
  }
}
.cid-tSpaXbEAJT .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tSpaXbEAJT .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tSpaXbEAJT .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSpaXbEAJT .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tSpaXbEAJT .embla__button {
    top: auto;
  }
}
.cid-tSpaXbEAJT .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  border-color: #FFFFFF;
  border-style: solid;
  margin: 0 auto 2rem auto;
}
.cid-tSpaXbEAJT .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tSpaXbEAJT .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tSpaXbEAJT .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tSpaXbEAJT .embla {
  position: relative;
  width: 100%;
}
.cid-tSpaXbEAJT .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tSpaXbEAJT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tSpaXbEAJT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tSpaXbEAJT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tSpaXbEAJT H3 {
  color: #ffffff;
}

.cid-tSpaXbEAJT .container-flux {
  position: relative;
  word-wrap: break-word;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* mobile-responsividade */


/* ------------------------------------------------------------------------------------------------------------------------------------------- */

/*---------------------------------- Quinta Lamina ----------------------------------------------------------------------------- --------------*/

.cid-tIFLKNRFqD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}

.cid-tIFLKNRFqD .text-tittle-white{
  color: #FFFFFF;
  padding: 0.5px;
}

.cid-tIFLKNRFqD .embla__evento_slide {
  display: flex;
  justify-content: center;
  position: center;
  min-width: 20em;
  max-width: 20em;
  /* margin-right: 5rem; */
}

.cid-tIFLKNRFqD .slide-evento-content {
  margin-top: 4rem;
  position: relative;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}

.cid-tIFLKNRFqD .container-flux {
  position: relative;
  word-wrap: break-word;
  padding-left: 4rem;
  padding-right: 4rem;
}

.cid-tIFLKNRFqD .title-evento-wrapper{
  align-items: center;
  overflow: hidden;
  background-color: #7474b5;
  padding: 0.2rem;
  max-width: 27rem;

}

.cid-tIFLKNRFqD .date-and-calendar {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin-left: 3rem;
  margin-bottom: 0.7rem;
}

.cid-tIFLKNRFqD .calendar-text{
  text-align: center;
  font-size: 1.2rem;
  font-style: bold;
  color: #000;
  margin-right: 3.5rem;

}

.cid-tIFLKNRFqD .item-evento-wrapper {
  width:  14rem;
  height: 14rem;
  border-style: solid;
  border-radius: 1.5rem;
  border-color: #7474b5;
  border-width: 0.4rem;
  align-items: center;
  overflow: hidden;
  justify-content: center;

}

.cid-tIFLKNRFqD .item-content-evento-wrapper{
  align-items: center;
  overflow: hidden;
  border-radius: 0.8rem;
  background-color: #7474b5;
  padding: 0.4rem;
  margin-top: 0.7rem;
  max-width: 14rem;
}


@media (min-width: 200px) and (max-width: 583) {
  .cid-tIFLKNRFqD {
    padding-top: 1rem;
    padding-bottom: -3rem;
    max-height: 50px!important;
    background-color: #ffffff;
  }

  .cid-tIFLKNRFqD .container-flux {
    position: relative;
    word-wrap: break-word;
    max-height: 60%;
    padding-left: 4rem;
    padding-right: 4rem;
  }


  .cid-tIFLKNRFqD .slide-evento-content {
    margin-top: 2rem;
    position: relative;
    display: flex;
    overflow: hidden;
  }

  .cid-tIFLKNRFqD .item-content-evento-wrapper{
    align-items: center;
    overflow: hidden;
    border-radius: 0.8rem;
    background-color: #7474b5;
    padding: 0.4rem;
    margin-top: 0.7rem;
    max-width: 14rem;
  }
}

@media (max-width: 767px) {

  .cid-tIFLKNRFqD .container-flux {
      width: 100% !important;

      padding: 2rem !important;

    }

    .cid-tIFLKNRFqD .title-evento-wrapper{
      align-items: center;
      overflow: hidden;
      background-color: #7474b5;
      padding: 0.2rem;
      max-width: 25rem;

    }
    .cid-tIFLKNRFqD .text-tittle-white{
      color: #FFFFFF;
      padding: 0.5px;
    }

    .cid-tIFLKNRFqD .embla__evento_slide {
      display: flex;
      justify-content: center;
      position: center;
      min-width: 20em;
      max-width: 20em;
    }
}

@media screen and (min-width: 768px) and (max-width: 1324px) {

  .cid-tIFLKNRFqD .container-flux {
      width: 100% !important;

      padding: 0.2rem !important;

    }

    .cid-tIFLKNRFqD .title-evento-wrapper{
      align-items: center;
      overflow: hidden;
      background-color: #7474b5;
      padding: 0.2rem;
      max-width: 25rem;

    }

    .cid-tIFLKNRFqD .text-tittle-white{
      color: #FFFFFF;
      padding: 0.5px;
    }

    .cid-tIFLKNRFqD .embla__evento_slide {
      display: flex;
      justify-content: center;
      position: center;
      min-width: 20em;
      max-width: 20em;
    }
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- */

.cid-tSpwvGK5sR {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url('/assets/images/imagesnew/fundo-6-2000x3316.png');
  font-family: 'Jost', sans-serif;
}
.cid-tSpwvGK5sR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSpwvGK5sR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tSpwvGK5sR .container {
    padding: 0 24px;
  }
}
.cid-tSpwvGK5sR .row {
  justify-content: center;
}
.cid-tSpwvGK5sR .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tSpwvGK5sR .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tSpwvGK5sR .panel-group .card {
  border: none;
  border-radius: 40px;
  background-color: #ffffff;
  margin-bottom: 32px;
  min-width: 40px;
}
.cid-tSpwvGK5sR .panel-group .card .card-header {
  padding: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tSpwvGK5sR .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-tSpwvGK5sR .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tSpwvGK5sR .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tSpwvGK5sR .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tSpwvGK5sR .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  font-size: 1.8em;
}
.cid-tSpwvGK5sR .panel-group .card .card-header .panel-title .mbr-iconfont {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #ffffff;
  background-color: #8e8ead;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tSpwvGK5sR .panel-group .card .panel-collapse .panel-body {
  padding: 0 40px 40px;
}
@media (max-width: 992px) {
  .cid-tSpwvGK5sR .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-tSpwvGK5sR .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 1.8em;
}
.cid-tSpwvGK5sR .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-tSpwvGK5sR .panel-title-edit {
  color: #000000;
}
.cid-tSpwvGK5sR .panel-text {
  color: #262642;
}

/* Penultima Lamina */

.cid-tTfu3iNslK {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("/assets/images/imagesnew/rectangle-34-2000x255.png");
}
.cid-tTfu3iNslK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTfu3iNslK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTfu3iNslK .container-fluid {
  padding: 0 64px;
}

.cid-tTfu3iNslK .container-fluid .row {
  padding: 0;
}

.cid-tTfu3iNslK .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}

.cid-tTfu3iNslK .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTfu3iNslK .text-center-six {
  margin-left: 6rem;
  margin-right: 2rem;
  white-space: nowrap;
  font-size: 3.2rem;
}

.cid-tTfu3iNslK .mbr-section-btn {
  padding-left: 3rem;
  padding-right: 8rem;
}


.cid-tTfu3iNslK  .button-dimension {
  border-radius: 1.2rem;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}


.cid-tTfu3iNslK .wrapper-content {
  /* border-style: solid; */
  display: flex;
  margin-right: 2rem;
  width: 65rem;
  height: 10rem;
  justify-content: baseline;
}

@media (max-width: 768px) {
  .cid-tTfu3iNslK .container {
      padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .cid-tTfu3iNslK .container-fluid {
      padding: 0 20px;
  }
}

@media (min-width:1900px){
  .cid-tTfu3iNslK .wrapper-content {
      /* border-style: solid; */
      display: flex;
      margin-left: 10rem;
      width: 65rem;
      height: 10rem;
      justify-content: baseline;
  }

}

@media screen and (min-width: 1368px) and (max-width: 1440px) {
  .cid-tTfu3iNslK {
      padding-top: 1rem;
      padding-bottom: 1rem;
      background-image: url("/assets/images/imagesnew/rectangle-34-2000x255.png");
  }
  .cid-tTfu3iNslK .mbr-fallback-image.disabled {
      display: none;
  }
  .cid-tTfu3iNslK .mbr-fallback-image {
      display: block;
      background-size: cover;
      background-position: center center;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
  }


  .cid-tTfu3iNslK .container-fluid {
      padding: 0 64px;
  }

  .cid-tTfu3iNslK .container-fluid .row {
      padding: 0;
  }

  .cid-tTfu3iNslK .title-wrapper .mbr-section-title {
      margin-bottom: 34px;
  }

  .cid-tTfu3iNslK .mbr-section-title {
      color: #1d1d1d;
  }

  .cid-tTfu3iNslK .text-center-six {
      margin-left: 0rem;
      margin-right: 0rem;
      white-space: nowrap;
      width: fit-content;
      font-size: 2.6rem;
      position: inherit;
  }

  .cid-tTfu3iNslK .mbr-section-btn {
      position: relative;
      width: fit-content;
  }

  .cid-tTfu3iNslK  .button-dimension {
      border-radius: 1.2rem;
      font-size: 2rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      white-space: nowrap;
  }


  .cid-tTfu3iNslK .wrapper-content {
      /* border-style: solid; */
      display: flex;
      margin: auto;
      width: 65rem;
      height: 10rem;
      justify-content: baseline;
  }
}

/* mobile repnsivo */

@media screen and (min-width: 200px) and (max-width: 1365px) {
  .cid-tTfu3iNslK {
      display: none !important;
      padding-top: 0rem !important;
      padding-bottom: 0rem !important;
      background-image: url("/assets/images/rectangle-34-2000x255.png");
  }
}

/* -------------------------------------------------------------------------- */

/* ultima Lamina */
.cid-tmvTVzNG2A {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmvTVzNG2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmvTVzNG2A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmvTVzNG2A .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmvTVzNG2A .row {
    text-align: center;
  }
  .cid-tmvTVzNG2A .row > div {
    margin: auto;
  }
  .cid-tmvTVzNG2A .social-row {
    justify-content: center;
  }
}
.cid-tmvTVzNG2A .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmvTVzNG2A .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 0rem;
  }
}
.cid-tmvTVzNG2A .mbr-text {
  color: #353535;
}
.cid-tmvTVzNG2A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmvTVzNG2A .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmvTVzNG2A H5 {
  color: #232323;
}
.cid-txaeocEs40.popup-builder {
  background-color: #ffffff;
}
.cid-txaeocEs40.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txaeocEs40.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txaeocEs40 .modal-content,
.cid-txaeocEs40 .modal-dialog {
  height: auto;
}
.cid-txaeocEs40 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txaeocEs40 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txaeocEs40 .form-wrapper .mbr-form .form-group,
  .cid-txaeocEs40 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txaeocEs40 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txaeocEs40 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
/* .cid-txaeocEs40 .mbr-text {
  text-align: center;
} */
.cid-txaeocEs40 .pt-0 {
  padding-top: 0 !important;
}
.cid-txaeocEs40 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txaeocEs40 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txaeocEs40 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txaeocEs40 .modal-open {
  overflow: hidden;
}
.cid-txaeocEs40 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txaeocEs40 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txaeocEs40 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txaeocEs40 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txaeocEs40 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txaeocEs40 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txaeocEs40 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txaeocEs40 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txaeocEs40 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txaeocEs40 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txaeocEs40 .modal-backdrop.fade {
  opacity: 0;
}
.cid-txaeocEs40 .modal-backdrop.show {
  opacity: .5;
}
.cid-txaeocEs40 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txaeocEs40 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txaeocEs40 .modal-header {
    padding: 1rem;
  }
}
.cid-txaeocEs40 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txaeocEs40 .modal-header .close svg {
  fill: #353535;
}
.cid-txaeocEs40 .modal-header .close:hover {
  opacity: 1;
}
.cid-txaeocEs40 .modal-header .close:focus {
  outline: none;
}
.cid-txaeocEs40 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-txaeocEs40 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txaeocEs40 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txaeocEs40 .modal-body {
    padding: 1rem;
  }
}
.cid-txaeocEs40 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txaeocEs40 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txaeocEs40 .modal-footer {
    padding: 1rem;
  }
}
.cid-txaeocEs40 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txaeocEs40 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txaeocEs40 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txaeocEs40 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txaeocEs40 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txaeocEs40 .modal-lg,
  .cid-txaeocEs40 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txaeocEs40 .modal-xl {
    max-width: 1140px;
  }
}
.cid-txaeocEs40 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txaeocEs40 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txaeocEs40 .form-group {
  margin-bottom: 1rem;
}
.cid-txaeocEs40 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txaeocEs40 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txaeocEs40 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txaeocEs40 .mbr-section-btn {
  margin: 0;
}
.cid-txaeocEs40 .mbr-section-btn .btn {
  margin: 0;
}


/* ----------------------------  NAVBAR------------------------------------------------------------------------ */
.cid-tmNB9Af64M {
  z-index: 1000;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tmNB9Af64M .align-right {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .cid-tmNB9Af64M .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tmNB9Af64M .navbar-caption {
  font-weight: 500;
}
.cid-tmNB9Af64M nav.navbar {
  position: fixed;
}

.custom-butom{
  font-size:1rem;
  font-weight:bold; 
  text-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
}


.cid-tmNB9Af64M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-tmNB9Af64M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}

.cid-tmNB9Af64M .dropdown-below {
    position: relative;
  }

.cid-tmNB9Af64M .dropdown-below:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  /* Adicione a animação de deslizamento */
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media(max-width: 767px) {
    .cid-tmNB9Af64M  .logo {
      width: 100%;
      max-width: 4rem; /* Define uma largura máxima para evitar distorções */
      display: block;
      margin: 0 auto; /* Centraliza a imagem na tela */
    }


  }

  @media (min-width: 768px) {
    .cid-tmNB9Af64M .logo {
      max-width: 4rem; /* Define a largura desejada para desktops */
      height: auto; /* Mantém a proporção original da imagem */
    }
  }

  .cid-tmNB9Af64M  .dropdown-menu {
    animation: slideDown 0.3s ease-in-out;
  }

  /* Adiciona um pequeno atraso antes de ocultar o dropdown */
  .cid-tmNB9Af64M .dropdown-below .dropdown-menu {
    transition-delay: 0.8s;
  }

  /* Adiciona um atraso na visibilidade para evitar que o dropdown desapareça imediatamente ao retirar o mouse */
  .cid-tmNB9Af64M .dropdown-below .dropdown-menu {
    visibility: hidden;
  }
.cid-tmNB9Af64M .dropdown-item:hover,
.cid-tmNB9Af64M.dropdown-item:focus {
  color: #7474b5!important;
}
.cid-tmNB9Af64M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmNB9Af64M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmNB9Af64M nav {
  box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.2);
}
.cid-tmNB9Af64M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmNB9Af64M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmNB9Af64M .nav-link {
  position: relative;
}
.cid-tmNB9Af64M .nav-link:hover {
  color: #ffffff !important;
}
.cid-tmNB9Af64M .container {
  display: flex;
  margin: auto;
}
@media (min-width: 991px) {
  .cid-tmNB9Af64M .container,
  .cid-tmNB9Af64M .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tmNB9Af64M .navbar.opened {
  background: #7474b5 !important;
}

.cid-tmNB9Af64M .dropdown-menu {
  background: #FFB200 !important;
}


.cid-tmNB9Af64M .nav-item:focus,
.cid-tmNB9Af64M .nav-link:focus {
  outline: none;
}

.cid-tmNB9Af64M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.5s ease;
}

.cid-tmNB9Af64M .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #7474b5;
}
.cid-tmNB9Af64M .navbar.opened {
  transition: all 0.3s;
}

.cid-tmNB9Af64M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmNB9Af64M .navbar.collapsed {
  justify-content: center;
}
.cid-tmNB9Af64M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

@media (min-width: 992px) {
  .cid-tmNB9Af64M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tmNB9Af64M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

@media (max-width: 991px) {
  .cid-tmNB9Af64M .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tmNB9Af64M .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-tmNB9Af64M .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tmNB9Af64M .navbar.navbar-short {
  min-height: 80px;
}

.cid-tmNB9Af64M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-tmNB9Af64M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmNB9Af64M button.navbar-toggler {
  outline: none;
  width: 30px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmNB9Af64M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tmNB9Af64M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmNB9Af64M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmNB9Af64M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmNB9Af64M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmNB9Af64M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmNB9Af64M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmNB9Af64M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmNB9Af64M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmNB9Af64M .navbar-dropdown {
  position: fixed;
}
.cid-tmNB9Af64M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmNB9Af64M .button-login{
  background-color:#FFB200;
  border-radius:1rem;
  max-height: 3rem;
  box-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top:0.1rem;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmNB9Af64M .navbar {
    height: 70px;
  }
  .cid-tmNB9Af64M .navbar.opened {
    height: auto;
  }
  .cid-tmNB9Af64M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmNB9Af64M .addr {
  text-align: center;
  max-width: 230px;
  min-width: 150px;
  margin: 0 10px;
}
@media (max-width: 992px) {
  .cid-tmNB9Af64M .addr {
    margin: 0 auto;
  }
}
.cid-tmNB9Af64M .mbr-section-subtitle.addr {
  color: #1d1d1b;
}
.cid-tmNB9Af64M .mbr-section-btn {
  flex: 0 0 240px;
}

.navbar-brand{
    margin-right: 2rem;
    display: block;
}
/* ----------------------------------------------------------------------------------------------------- */

.cid-tt7FVtwXCz {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f3a11d;
}
.cid-tt7FVtwXCz .row {
  align-items: center;
}
.cid-tt7FVtwXCz .title-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tt7FVtwXCz .title-container {
    justify-content: center;
  }
}
.cid-tt7FVtwXCz .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 12px;
  background-color: #5f6ad4;
}
.cid-tt7FVtwXCz .iconfont-wrapper .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tt7FVtwXCz .main-title {
  color: #ffffff;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tt7FVtwXCz .main-title {
    text-align: center !important;
  }
}
.cid-tt7FVtwXCz .main-subtitle {
  margin-top: 12px;
  color: #2B2B2B;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tt7FVtwXCz .main-subtitle {
    text-align: center !important;
  }
}
.cid-tt7FVtwXCz .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0 10px !important;
}
.cid-tt7FVtwXCz form {
  width: 100%;
}
.cid-tt7FVtwXCz form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tt7FVtwXCz form p {
  color: #2B2B2B;
}
.cid-tt7FVtwXCz form .mbr-section-btn {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-tt7FVtwXCz form .mbr-section-btn {
    width: 100%;
  }
}
.cid-tt7FVtwXCz form .mbr-section-btn .btn {
  border: none !important;
  min-height: 42px;
  width: 100%;
  padding: 1px 6px;
}
.cid-tt7FVtwXCz form .mbr-section-btn .btn:hover {
  background-color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tt7FVtwXCz form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tt7FVtwXCz form .form-group {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  flex-grow: 1;
}
.cid-tt7FVtwXCz form .form-control {
  height: 42px;
  border: 1px solid #DFDFD8 !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 8px !important;
  margin-bottom: 0;
  padding: 8px 8px 8px 20px;
  font-size: 18px;
  line-height: 24px;
  color: #BDBDB8;
  font-weight: 400;
}
.cid-tt7FVtwXCz form .form-control::-webkit-input-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form .form-control::-moz-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form .form-control:-moz-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form .form-control:-ms-input-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form .form-control:hover {
  border-color: #BDBDB8 !important;
}
.cid-tt7FVtwXCz form select {
  color: #BDBDB8 !important;
}
.cid-tt7FVtwXCz form textarea {
  height: 100px;
}
.cid-tt7FVtwXCz form input:active,
.cid-tt7FVtwXCz form textarea:active,
.cid-tt7FVtwXCz form input:focus,
.cid-tt7FVtwXCz form textarea:focus {
  background-color: #FFFFFF !important;
  border-color: #BDBDB8 !important;
  color: #2B2B2B;
}
.cid-tt7FVtwXCz form input:active::-webkit-input-placeholder,
.cid-tt7FVtwXCz form textarea:active::-webkit-input-placeholder,
.cid-tt7FVtwXCz form input:focus::-webkit-input-placeholder,
.cid-tt7FVtwXCz form textarea:focus::-webkit-input-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form input:active::-moz-placeholder,
.cid-tt7FVtwXCz form textarea:active::-moz-placeholder,
.cid-tt7FVtwXCz form input:focus::-moz-placeholder,
.cid-tt7FVtwXCz form textarea:focus::-moz-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form input:active:-moz-placeholder,
.cid-tt7FVtwXCz form textarea:active:-moz-placeholder,
.cid-tt7FVtwXCz form input:focus:-moz-placeholder,
.cid-tt7FVtwXCz form textarea:focus:-moz-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form input:active:-ms-input-placeholder,
.cid-tt7FVtwXCz form textarea:active:-ms-input-placeholder,
.cid-tt7FVtwXCz form input:focus:-ms-input-placeholder,
.cid-tt7FVtwXCz form textarea:focus:-ms-input-placeholder {
  color: #BDBDB8;
}
.cid-tt7FVtwXCz form .row {
  margin-left: -3px !important;
  margin-right: -3px !important;
}
.cid-tt7FVtwXCz form .row [class*=col] {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.cid-tt7FVtwXCz form label {
  width: 100%;
  color: #2B2B2B;
  margin-bottom: 10px;
}
.cid-tt7FVtwXCz form .form-check-input {
  border-color: #DFDFD8 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tt7FVtwXCz form .form-check-input:focus,
.cid-tt7FVtwXCz form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #BDBDB8 !important;
}
.cid-tt7FVtwXCz form .form-check-input:checked {
  background-color: #BDBDB8 !important;
  border-color: #BDBDB8 !important;
}
.cid-tnsyDdep6U {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #f0f0f0;
}
.cid-tnsyDdep6U .container-fluid {
  padding: 0 3rem;
}
.cid-tnsyDdep6U .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ff6666);
  display: inline-block;
}
.cid-tnsyDdep6U .card {
  display: block;
}
.cid-tnsyDdep6U .card .card-wrapper {
  height: 1%;
  overflow: visible;
}
.cid-tnsyDdep6U .card .card-wrapper .card-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 0 22px 0;
  z-index: 1;
  border-radius: 0;
}
.cid-tnsyDdep6U .card .card-wrapper:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tnsyDdep6U .card-box {
  margin-bottom: 21px;
}
.cid-tnsyDdep6U .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnsyDdep6U .oldPrice {
  text-decoration: line-through;
}
@media (max-width: 767px) {
  .cid-tnsyDdep6U .container-fluid {
    padding: 0 1rem;
  }
  .cid-tnsyDdep6U .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tnsyDdep6U .mbr-section-btn {
  transition: all 0.5s;
  position: absolute;
  opacity: 0;
}
.cid-tnsyDdep6U .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tnsyDdep6U .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tnsyDdep6U .mbr-section-title b:last-child,
.cid-tnsyDdep6U .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-tnsyDdep6U .mbr-item-tag {
  margin: 0;
}
.cid-tnsyDdep6U .mbr-item-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tnsyDdep6U .newPrice,
.cid-tnsyDdep6U .mbr-section-btn {
  color: #f23801;
  text-align: right;
}

.cid-tnsyDdep6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnsyDdep6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tta094tnUy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f0f0f0;
}
.cid-tta094tnUy .mbr-shop {
  display: table;
  width: 100%;
}
.cid-tta094tnUy .mbr-shop .row {
  margin: 0;
}
.cid-tta094tnUy .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-tta094tnUy .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-tta094tnUy .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-tta094tnUy .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-tta094tnUy .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-tta094tnUy .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-tta094tnUy .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-tta094tnUy .mbr-shop .hide-modal {
  display: none;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-tta094tnUy .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tta094tnUy .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tta094tnUy .mbr-shop .filter-by-pu,
.cid-tta094tnUy .mbr-shop .filter-by-pd,
.cid-tta094tnUy .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-tta094tnUy .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-tta094tnUy .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-tta094tnUy .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-tta094tnUy .mbr-shop .galleryItem h4,
.cid-tta094tnUy .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-tta094tnUy .mbr-shop .galleryItem h5,
.cid-tta094tnUy .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-tta094tnUy .mbr-shop .galleryItem p,
.cid-tta094tnUy .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-tta094tnUy .mbr-shop .item-button {
  text-align: center;
}
.cid-tta094tnUy .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-tta094tnUy .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-tta094tnUy .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-tta094tnUy .mbr-shop .sidebar-block {
  position: relative;
}
.cid-tta094tnUy .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-tta094tnUy .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-tta094tnUy .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-tta094tnUy .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-tta094tnUy .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-tta094tnUy .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-tta094tnUy .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tta094tnUy .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-tta094tnUy .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-tta094tnUy .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-tta094tnUy .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-tta094tnUy .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-tta094tnUy .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-item__hided h4,
.cid-tta094tnUy .mbr-shop .mbr-gallery-item__hided h5,
.cid-tta094tnUy .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-tta094tnUy .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-tta094tnUy .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-tta094tnUy .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-tta094tnUy .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-tta094tnUy .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-tta094tnUy .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-tta094tnUy .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-tta094tnUy .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-tta094tnUy .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tta094tnUy .mbr-shop .range-controls {
  position: relative;
}
.cid-tta094tnUy .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-tta094tnUy .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-tta094tnUy .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-tta094tnUy .mbr-shop .toggle:hover,
.cid-tta094tnUy .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-tta094tnUy .mbr-shop .min-toggle {
  left: 0;
}
.cid-tta094tnUy .mbr-shop .max-toggle {
  right: 0;
}
.cid-tta094tnUy .mbr-shop .hided-by-price {
  display: none;
}
.cid-tta094tnUy .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-tta094tnUy .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-tta094tnUy .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tta094tnUy .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-tta094tnUy .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-tta094tnUy .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-tta094tnUy .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-tta094tnUy .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-tta094tnUy .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-tta094tnUy .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tta094tnUy .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tta094tnUy .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tta094tnUy .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-tta094tnUy .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-tta094tnUy .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-tta094tnUy .mbr-shop .shop-items .onsale,
.cid-tta094tnUy .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-tta094tnUy .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-tta094tnUy .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tta094tnUy .mbr-shop .price-range {
  display: inline-block;
}
.cid-tta094tnUy .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-tta094tnUy .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-tta094tnUy .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-tta094tnUy .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-tta094tnUy .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-tta094tnUy .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-tta094tnUy .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-tta094tnUy .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-tta094tnUy .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-tta094tnUy .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-tta094tnUy .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-tta094tnUy .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tta094tnUy .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-tta094tnUy .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-tta094tnUy .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-tta094tnUy .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-tta094tnUy .wrapper-shop-items {
    order: 1;
  }
  .cid-tta094tnUy .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-tta094tnUy .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-tta094tnUy .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-tta094tnUy .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-tta094tnUy .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-tta094tnUy .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-tta094tnUy .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-tta094tnUy .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-tta094tnUy .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-tta094tnUy .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-tta094tnUy .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-tta094tnUy .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-tta094tnUy .range-controls {
  display: block !important;
}
.cid-tta094tnUy .sort-buttons {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tta094tnUy .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-tmvTVzNG2A {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmvTVzNG2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmvTVzNG2A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmvTVzNG2A .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmvTVzNG2A .row {
    text-align: center;
  }
  .cid-tmvTVzNG2A .row > div {
    margin: auto;
  }
  .cid-tmvTVzNG2A .social-row {
    justify-content: center;
  }
}
.cid-tmvTVzNG2A .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmvTVzNG2A .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 0rem;
  }
}

.cid-tmvTVzNG2A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmvTVzNG2A .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmvTVzNG2A H5 {
  color: #232323;
}

.cid-tu9BOpOPgI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu9BOpOPgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu9BOpOPgI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu9BOpOPgI [class^="socicon-"]:before,
.cid-tu9BOpOPgI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tu9BOpOPgI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tu9BOpOPgI .btn-social:hover {
  background: #6592e6;
}
.cid-tu9BOpOPgI .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-ty1nPGPN9K {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ty1nPGPN9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-ty1nPGPN9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ty1nPGPN9K .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ty1nPGPN9K .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tu9Vq1mYt4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tu9Vq1mYt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu9Vq1mYt4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tu9Vq1mYt4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tu9Vq1mYt4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tu9Vq1mYt4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-turxZAT9tA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turxZAT9tA .mbr-fallback-image.disabled {
  display: none;
}
.cid-turxZAT9tA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turxZAT9tA [class^="socicon-"]:before,
.cid-turxZAT9tA [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-turxZAT9tA .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-turxZAT9tA .btn-social:hover {
  background: #6592e6;
}
.cid-turxZAT9tA .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tydOVQ9w7V {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tydOVQ9w7V .mbr-section-title,
.cid-tydOVQ9w7V .mbr-section-subtitle {
  text-align: center;
}
.cid-tydOVQ9w7V .cost {
  word-break: normal;
}
.cid-tydOVQ9w7V .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  background: #fafafa;
}
.cid-tydOVQ9w7V .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tydOVQ9w7V .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tydOVQ9w7V .card-wrapper {
    padding: 1rem;
  }
}
.cid-tydOVQ9w7V .card-title {
  color: #000000;
}
.cid-tydOVQ9w7V P {
  color: #6c758f;
}
.cid-tydOVQ9w7V .mbr-section-title {
  color: #000000;
}
.cid-tydOVQ9w7V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tydOVQ9w7V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tua1eh8v5s {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background: #f0f0f0;
}
.cid-tua1eh8v5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tua1eh8v5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tua1eh8v5s .embla__slide {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  min-width: 420px;
  max-width: 420px;
  min-height: 300px;
  background-image: linear-gradient(0deg, #ffffff, rgba(17, 17, 17, 0));
  border-radius: 16px;
}
@media (max-width: 768px) {
  .cid-tua1eh8v5s .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tua1eh8v5s .embla__slide .card-wrap {
  z-index: 1;
}
.cid-tua1eh8v5s .embla__slide .card-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  border-radius: 16px;
  z-index: -1;
}
.cid-tua1eh8v5s .embla__slide .card-wrap .mbr-desc {
  padding: 0 5px;
  margin: -3rem 0 0 0;
  z-index: 1;
}
.cid-tua1eh8v5s .embla__button--next,
.cid-tua1eh8v5s .embla__button--prev {
  display: flex;
}
.cid-tua1eh8v5s .embla__button {
  top: -3rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tua1eh8v5s .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tua1eh8v5s .embla__button:hover {
  background: #ffffff;
  color: #ffffff;
  opacity: .7;
}
.cid-tua1eh8v5s .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tua1eh8v5s .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tua1eh8v5s .embla__button {
    top: auto;
    bottom: -4rem;
  }
}
.cid-tua1eh8v5s .embla {
  position: relative;
  width: 100%;
}
.cid-tua1eh8v5s .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tua1eh8v5s .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tua1eh8v5s .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tua1eh8v5s .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tua1eh8v5s .mbr-desc {
  color: #f4efe8;
  text-align: right;
}
.cid-tyvvuVBhPN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tyvvuVBhPN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyvvuVBhPN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyvvuVBhPN .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tyvvthslEl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f0f0f0;
}
.cid-tyvvthslEl .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tyvvthslEl .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tyvvthslEl .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tyvvthslEl .mbr-section-title {
  text-align: center;
  color: #252434;
}

.cid-tu9UtWb1R1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tu9UtWb1R1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu9UtWb1R1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu9UtWb1R1 .video-wrapper iframe {
  width: 100%;
}

.cid-tu9UpNtwxx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fafafa;
}
.cid-tu9UpNtwxx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu9UpNtwxx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu9UpNtwxx .google-map {
  height: 30rem;
  position: relative;
}
.cid-tu9UpNtwxx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tu9UpNtwxx .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tu9UpNtwxx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tu9UpNtwxx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tmvTVzNG2A {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmvTVzNG2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmvTVzNG2A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmvTVzNG2A .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmvTVzNG2A .row {
    text-align: center;
  }
  .cid-tmvTVzNG2A .row > div {
    margin: auto;
  }
  .cid-tmvTVzNG2A .social-row {
    justify-content: center;
  }
}
.cid-tmvTVzNG2A .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmvTVzNG2A .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 0rem;
  }
}
/* .cid-tmvTVzNG2A .mbr-text {
  color: #353535;
} */
.cid-tmvTVzNG2A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmvTVzNG2A .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmvTVzNG2A H5 {
  color: #232323;
}
.cid-turyik9pFM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-turyik9pFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-turyik9pFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turyik9pFM .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-turyik9pFM .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-turyik9pFM .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-turyik9pFM .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-turyik9pFM .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-turyik9pFM .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-turyik9pFM .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-turyik9pFM .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-turyik9pFM .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-turyik9pFM .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-turyik9pFM .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-turyik9pFM .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-turyik9pFM .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-turyik9pFM .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-turyik9pFM [class^="socicon-"]:before,
.cid-turyik9pFM [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tussst8nNy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tussst8nNy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tussst8nNy form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tussst8nNy form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tussst8nNy form.mbr-form {
    padding: 1rem;
  }
}
.cid-tussst8nNy form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tussst8nNy form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tvcmyQ7WjC {
  z-index: 1000;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tvcmyQ7WjC .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tvcmyQ7WjC .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tvcmyQ7WjC .navbar-caption {
  font-weight: 500;
}
.cid-tvcmyQ7WjC nav.navbar {
  position: fixed;
}

.cid-tvcmyQ7WjC nav {
  box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.2);
}
.cid-tvcmyQ7WjC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvcmyQ7WjC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvcmyQ7WjC .nav-link {
  position: relative;
}
.cid-tvcmyQ7WjC .nav-link:hover {
  color: #ffffff !important;
}
.cid-tvcmyQ7WjC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 991px) {
  .cid-tvcmyQ7WjC .container,
  .cid-tvcmyQ7WjC .container-fluid {
    flex-wrap: nowrap;
  }
}

.cid-tvcmyQ7WjC .nav-item:focus,
.cid-tvcmyQ7WjC .nav-link:focus {
  outline: none;
}

.cid-tvcmyQ7WjC .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #7474b5;
}
.cid-tvcmyQ7WjC .navbar.opened {
  transition: all 0.3s;
}

.cid-tvcmyQ7WjC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvcmyQ7WjC .navbar.collapsed {
  justify-content: center;
}
.cid-tvcmyQ7WjC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

@media (min-width: 992px) {
  .cid-tvcmyQ7WjC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tvcmyQ7WjC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

@media (max-width: 991px) {
  .cid-tvcmyQ7WjC .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tvcmyQ7WjC .navbar ul.navbar-nav li {
    margin: auto;
  }


  .cid-tvcmyQ7WjC .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tvcmyQ7WjC .navbar.navbar-short {
  min-height: 80px;
}

.cid-tvcmyQ7WjC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-tvcmyQ7WjC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvcmyQ7WjC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvcmyQ7WjC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvcmyQ7WjC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvcmyQ7WjC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvcmyQ7WjC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvcmyQ7WjC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvcmyQ7WjC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvcmyQ7WjC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvcmyQ7WjC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvcmyQ7WjC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvcmyQ7WjC .navbar-dropdown {
  position: fixed;
}
.cid-tvcmyQ7WjC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvcmyQ7WjC .navbar {
    height: 70px;
  }
  .cid-tvcmyQ7WjC .navbar.opened {
    height: auto;
  }
  .cid-tvcmyQ7WjC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvcmyQ7WjC .addr {
  text-align: center;
  max-width: 230px;
  min-width: 150px;
  margin: 0 10px;
}
@media (max-width: 992px) {
  .cid-tvcmyQ7WjC .addr {
    margin: 0 auto;
  }
}
.cid-tvcmyQ7WjC .mbr-section-subtitle.addr {
  color: #1d1d1b;
}
.cid-tvcmyQ7WjC .mbr-section-btn {
  flex: 0 0 240px;
}
.cid-tvcmyQMblX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvcmyQMblX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcmyQMblX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcmyQMblX [class^="socicon-"]:before,
.cid-tvcmyQMblX [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tvcmyQMblX .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tvcmyQMblX .btn-social:hover {
  background: #6592e6;
}
.cid-tvcmyQMblX .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tvQiNcP9h4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefec;
  overflow: hidden;
}
.cid-tvQiNcP9h4 .col-title {
  position: relative;
  max-width: 1200px;
  z-index: 10;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-tvQiNcP9h4 .col-title {
    margin-bottom: 40px;
  }
}
.cid-tvQiNcP9h4 .mbr-section-title {
  color: #2B2B2B;
}
.cid-tvQiNcP9h4 .mbr-section-main-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tvQiNcP9h4 .mbr-section-main-subtitle {
    margin-top: 16px;
  }
}
.cid-tvQiNcP9h4 .col-carousel {
  max-width: 100%;
  width: 100%;
}
.cid-tvQiNcP9h4 .carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 520px;
  margin-bottom: 60px;
}
.cid-tvQiNcP9h4 .carousel img {
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tvQiNcP9h4 .carousel {
    height: 380px;
  }
  .cid-tvQiNcP9h4 .carousel img {
    max-height: 380px;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .cid-tvQiNcP9h4 .carousel {
    height: 320px;
  }
  .cid-tvQiNcP9h4 .carousel img {
    max-height: 320px;
  }
}
.cid-tvQiNcP9h4 .carousel-inner {
  display: flex;
  align-items: center;
  max-width: 1160px;
}
@media (max-width: 1199px) {
  .cid-tvQiNcP9h4 .carousel-inner {
    max-width: 940px;
  }
}
@media (max-width: 991px) {
  .cid-tvQiNcP9h4 .carousel-inner {
    max-width: 618px;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .cid-tvQiNcP9h4 .carousel-inner {
    max-width: 460px;
  }
}
.cid-tvQiNcP9h4 .carousel-item {
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
}
.cid-tvQiNcP9h4 .item-wrapper {
  width: 100%;
}
.cid-tvQiNcP9h4 .carousel-caption {
  bottom: 30px;
}
.cid-tvQiNcP9h4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tvQiNcP9h4 .mbr-section-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tvQiNcP9h4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tvQiNcP9h4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tvQiNcP9h4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tvQiNcP9h4 .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: #9a4ac3;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1 !important;
}
@media (max-width: 575px) {
  .cid-tvQiNcP9h4 .carousel-control {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}
.cid-tvQiNcP9h4 .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tvQiNcP9h4 .carousel-control.carousel-control-next {
  right: 0;
}
.cid-tvQiNcP9h4 .carousel-control:hover {
  background-color: #CECEC1;
  color: #2B2B2B !important;
}
.cid-tvQiNcP9h4 .carousel-indicators {
  position: absolute;
  bottom: -60px;
  margin-bottom: 0 !important;
}
.cid-tvQiNcP9h4 .carousel-indicators li {
  max-width: 10px;
  height: 10px !important;
  width: 10px !important;
  max-height: 10px;
  margin: 10px 5px;
  background-color: #CECEC1;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
  border: 0 !important;
}
.cid-tvQiNcP9h4 .carousel-indicators li.active,
.cid-tvQiNcP9h4 .carousel-indicators li:hover {
  background-color: #9a4ac3;
  height: 10px !important;
  width: 10px !important;
}
.cid-tvQiNcP9h4 .carousel-indicators li::after,
.cid-tvQiNcP9h4 .carousel-indicators li::before {
  content: none;
}
.cid-tvQiNcP9h4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tvQiNcP9h4 .container,
.cid-tvQiNcP9h4 .container-fluid {
  position: relative;
}
.cid-tvQiNcP9h4 .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 200px;
  height: 200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 767px) {
  .cid-tvQiNcP9h4 .circle-blur {
    width: 200px;
    height: 200px;
  }
}
.cid-tvQiNcP9h4 .circle-blur1 {
  top: 0;
  right: 30%;
  background-image: linear-gradient(132deg, #77bbdf 27%, #77bbdf 50%, #77bbdf 79%);
}
.cid-tvQiNcP9h4 .circle-blur2 {
  top: 12%;
  right: 20%;
  background-image: linear-gradient(132deg, #a47ee3 27%, #a47ee3 50%, #a47ee3 79%);
}
.cid-tvQiNcP9h4 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tvcoogkjTn {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tvcoogkjTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcoogkjTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcoogkjTn .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tvcoogkjTn .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tvcoogkjTn .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvcoogkjTn .card {
    margin-bottom: 2rem;
  }
  .cid-tvcoogkjTn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tvRMiSMBmE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f0f0f0;
}
.cid-tvRMiSMBmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvRMiSMBmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvRMiSMBmE .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tvcmyTgybZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tvcmyTgybZ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tvcmyTgybZ .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tvcmyTgybZ .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #bed3f9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tvcmyTgybZ .mbr-section-title {
  text-align: center;
  color: #252434;
}
/* .cid-tvcmyTgybZ .mbr-text {
  color: #3d5943;
} */
.cid-tvcmyTBnvM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-tvcmyTBnvM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcmyTBnvM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcmyTBnvM .video-wrapper iframe {
  width: 100%;
}

.cid-tvcmyU7pNj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tvcmyU7pNj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcmyU7pNj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcmyU7pNj .google-map {
  height: 30rem;
  position: relative;
}
.cid-tvcmyU7pNj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tvcmyU7pNj .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tvcmyU7pNj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tvcmyU7pNj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tvcw34nv9N {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tvcw34nv9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcw34nv9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcw34nv9N [class^="socicon-"]:before,
.cid-tvcw34nv9N [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tvcw34nv9N .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tvcw34nv9N .btn-social:hover {
  background: #6592e6;
}
.cid-tvcw34nv9N .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tvcmyUzABA {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tvcmyUzABA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcmyUzABA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcmyUzABA .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tvcmyUzABA .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tvcmyUzABA .row {
    text-align: center;
  }
  .cid-tvcmyUzABA .row > div {
    margin: auto;
  }
  .cid-tvcmyUzABA .social-row {
    justify-content: center;
  }
}
.cid-tvcmyUzABA .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tvcmyUzABA .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tvcmyUzABA .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvcmyUzABA .list {
    margin-bottom: 0rem;
  }
}

.cid-tvcmyUzABA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tvcmyUzABA .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tvcmyUzABA div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tvcmyUzABA H5 {
  color: #232323;
}
.cid-tKv74QMzf5 {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-tKv74QMzf5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tKv74QMzf5 form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tKv74QMzf5 form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tKv74QMzf5 form.mbr-form {
    padding: 1rem;
  }
}
.cid-tKv74QMzf5 form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tKv74QMzf5 form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}

.cid-tmvTVzNG2A {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmvTVzNG2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmvTVzNG2A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmvTVzNG2A .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmvTVzNG2A .row {
    text-align: center;
  }
  .cid-tmvTVzNG2A .row > div {
    margin: auto;
  }
  .cid-tmvTVzNG2A .social-row {
    justify-content: center;
  }
}
.cid-tmvTVzNG2A .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmvTVzNG2A .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmvTVzNG2A .list {
    margin-bottom: 0rem;
  }
}

.cid-tmvTVzNG2A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmvTVzNG2A .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmvTVzNG2A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmvTVzNG2A H5 {
  color: #232323;
}
.cid-tNX27nwYCE {
  z-index: 1000;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tNX27nwYCE .align-right {
    text-align: center;
  }
}

.cid-tNX27nwYCE .navbar-caption {
  font-weight: 500;
}
.cid-tNX27nwYCE nav.navbar {
  position: fixed;
}

.cid-tNX27nwYCE nav {
  box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.2);
}
.cid-tNX27nwYCE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}

.cid-tNX27nwYCE .nav-link {
  position: relative;
}
.cid-tNX27nwYCE .nav-link:hover {
  color: #ffffff !important;
}
.cid-tNX27nwYCE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 991px) {
  .cid-tNX27nwYCE .container,
  .cid-tNX27nwYCE .container-fluid {
    flex-wrap: nowrap;
  }
}

.cid-tNX27nwYCE .nav-item:focus,
.cid-tNX27nwYCE .nav-link:focus {
  outline: none;
}

.cid-tNX27nwYCE .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #7474b5;
}
.cid-tNX27nwYCE .navbar.opened {
  transition: all 0.3s;
}

.cid-tNX27nwYCE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNX27nwYCE .navbar.collapsed {
  justify-content: center;
}
.cid-tNX27nwYCE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

@media (min-width: 992px) {
  .cid-tNX27nwYCE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tNX27nwYCE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

@media (max-width: 991px) {
  .cid-tNX27nwYCE .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tNX27nwYCE .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-tNX27nwYCE .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tNX27nwYCE .navbar.navbar-short {
  min-height: 80px;
}

.cid-tNX27nwYCE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNX27nwYCE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNX27nwYCE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNX27nwYCE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNX27nwYCE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNX27nwYCE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNX27nwYCE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNX27nwYCE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNX27nwYCE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNX27nwYCE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNX27nwYCE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tNX27nwYCE .addr {
  text-align: center;
  max-width: 230px;
  min-width: 150px;
  margin: 0 10px;
}
@media (max-width: 992px) {
  .cid-tNX27nwYCE .addr {
    margin: 0 auto;
  }
}
.cid-tNX27nwYCE .mbr-section-subtitle.addr {
  color: #1d1d1b;
}
.cid-tNX27nwYCE .mbr-section-btn {
  flex: 0 0 240px;
}
.cid-tNX27o2aow {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f3a11d;
}
.cid-tNX27o2aow .row {
  align-items: center;
}
.cid-tNX27o2aow .title-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tNX27o2aow .title-container {
    justify-content: center;
  }
}
.cid-tNX27o2aow .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 12px;
  background-color: #5f6ad4;
}
.cid-tNX27o2aow .iconfont-wrapper .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tNX27o2aow .main-title {
  color: #ffffff;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tNX27o2aow .main-title {
    text-align: center !important;
  }
}
.cid-tNX27o2aow .main-subtitle {
  margin-top: 12px;
  color: #2B2B2B;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tNX27o2aow .main-subtitle {
    text-align: center !important;
  }
}
.cid-tNX27o2aow .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0 10px !important;
}
.cid-tNX27o2aow form {
  width: 100%;
}
.cid-tNX27o2aow form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tNX27o2aow form p {
  color: #2B2B2B;
}
.cid-tNX27o2aow form .mbr-section-btn {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-tNX27o2aow form .mbr-section-btn {
    width: 100%;
  }
}
.cid-tNX27o2aow form .mbr-section-btn .btn {
  border: none !important;
  min-height: 42px;
  width: 100%;
  padding: 1px 6px;
}
.cid-tNX27o2aow form .mbr-section-btn .btn:hover {
  background-color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tNX27o2aow form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tNX27o2aow form .form-group {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  flex-grow: 1;
}
.cid-tNX27o2aow form .form-control {
  height: 42px;
  border: 1px solid #DFDFD8 !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 8px !important;
  margin-bottom: 0;
  padding: 8px 8px 8px 20px;
  font-size: 18px;
  line-height: 24px;
  color: #BDBDB8;
  font-weight: 400;
}
.cid-tNX27o2aow form .form-control::-webkit-input-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form .form-control::-moz-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form .form-control:-moz-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form .form-control:-ms-input-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form .form-control:hover {
  border-color: #BDBDB8 !important;
}
.cid-tNX27o2aow form select {
  color: #BDBDB8 !important;
}
.cid-tNX27o2aow form textarea {
  height: 100px;
}
.cid-tNX27o2aow form input:active,
.cid-tNX27o2aow form textarea:active,
.cid-tNX27o2aow form input:focus,
.cid-tNX27o2aow form textarea:focus {
  background-color: #FFFFFF !important;
  border-color: #BDBDB8 !important;
  color: #2B2B2B;
}
.cid-tNX27o2aow form input:active::-webkit-input-placeholder,
.cid-tNX27o2aow form textarea:active::-webkit-input-placeholder,
.cid-tNX27o2aow form input:focus::-webkit-input-placeholder,
.cid-tNX27o2aow form textarea:focus::-webkit-input-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form input:active::-moz-placeholder,
.cid-tNX27o2aow form textarea:active::-moz-placeholder,
.cid-tNX27o2aow form input:focus::-moz-placeholder,
.cid-tNX27o2aow form textarea:focus::-moz-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form input:active:-moz-placeholder,
.cid-tNX27o2aow form textarea:active:-moz-placeholder,
.cid-tNX27o2aow form input:focus:-moz-placeholder,
.cid-tNX27o2aow form textarea:focus:-moz-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form input:active:-ms-input-placeholder,
.cid-tNX27o2aow form textarea:active:-ms-input-placeholder,
.cid-tNX27o2aow form input:focus:-ms-input-placeholder,
.cid-tNX27o2aow form textarea:focus:-ms-input-placeholder {
  color: #BDBDB8;
}
.cid-tNX27o2aow form .row {
  margin-left: -3px !important;
  margin-right: -3px !important;
}
.cid-tNX27o2aow form .row [class*=col] {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.cid-tNX27o2aow form label {
  width: 100%;
  color: #2B2B2B;
  margin-bottom: 10px;
}
.cid-tNX27o2aow form .form-check-input {
  border-color: #DFDFD8 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tNX27o2aow form .form-check-input:focus,
.cid-tNX27o2aow form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #BDBDB8 !important;
}
.cid-tNX27o2aow form .form-check-input:checked {
  background-color: #BDBDB8 !important;
  border-color: #BDBDB8 !important;
}
.cid-tNX3qWt54t {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url('/assets/images/imagesnew/background1-2.jpg');
}
.cid-tNX3qWt54t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNX3qWt54t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transform: translateZ(0) scale(1.2);
  filter: blur(8px);
}
.cid-tNX3qWt54t .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-tNX3qWt54t .container-fluid {
    padding: 0 20px;
  }
}
.cid-tNX3qWt54t .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tNX3qWt54t .container {
    padding: 0 20px;
  }
}
.cid-tNX3qWt54t .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}

.cid-tNX3qWt54t .mbr-section-title {
  color: #1d1d1d;
}

.cid-tNX3qWt54t .mbr-section-title,
.cid-tNX3qWt54t .mbr-section-btn {
  color: #ffffff;
}
.cid-tNX27osLHP {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #f0f0f0;
}
.cid-tNX27osLHP .container-fluid {
  padding: 0 3rem;
}
.cid-tNX27osLHP .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ff6666);
  display: inline-block;
}
.cid-tNX27osLHP .card {
  display: block;
}
.cid-tNX27osLHP .card .card-wrapper {
  height: 1%;
  overflow: visible;
}
.cid-tNX27osLHP .card .card-wrapper .card-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 0 22px 0;
  z-index: 1;
  border-radius: 0;
}
.cid-tNX27osLHP .card .card-wrapper:hover .mbr-section-btn {
  opacity: 1;
}
.cid-tNX27osLHP .card-box {
  margin-bottom: 21px;
}
.cid-tNX27osLHP .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tNX27osLHP .oldPrice {
  text-decoration: line-through;
}
@media (max-width: 767px) {
  .cid-tNX27osLHP .container-fluid {
    padding: 0 1rem;
  }
  .cid-tNX27osLHP .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tNX27osLHP .mbr-section-btn {
  transition: all 0.5s;
  position: absolute;
  opacity: 0;
}
.cid-tNX27osLHP .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tNX27osLHP .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tNX27osLHP .mbr-section-title b:last-child,
.cid-tNX27osLHP .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-tNX27osLHP .mbr-item-tag {
  margin: 0;
}
.cid-tNX27osLHP .mbr-item-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tNX27osLHP .newPrice,
.cid-tNX27osLHP .mbr-section-btn {
  color: #f23801;
  text-align: right;
}

.cid-tNX27osLHP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNX27osLHP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNX27pZd9A {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNX27pZd9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNX27pZd9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNX27pZd9A .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tNX27pZd9A .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tNX27pZd9A .row {
    text-align: center;
  }
  .cid-tNX27pZd9A .row > div {
    margin: auto;
  }
  .cid-tNX27pZd9A .social-row {
    justify-content: center;
  }
}
.cid-tNX27pZd9A .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNX27pZd9A .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tNX27pZd9A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNX27pZd9A .list {
    margin-bottom: 0rem;
  }
}
/* .cid-tNX27pZd9A .mbr-text {
  color: #353535;
} */
.cid-tNX27pZd9A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tNX27pZd9A .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tNX27pZd9A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tNX27pZd9A H5 {
  color: #232323;
}

.cid-tSpaXbEAJT .mbr-fonts-style{
    color: #FFFFFF;
    text-shadow: #000000;
}
